- 21 Sep, 2015 4 commits
-
-
Alexander Barkov authored
Using a CHARSET_INFO pointer instead.
-
Alexander Barkov authored
pointer instread, as the "derivation" and "repertoire" parts of DTCollation were not really used by user_var_entry.
-
Alexander Barkov authored
-
Alexander Barkov authored
Moving agg_arg_charsets_for_string_result() and agg_arg_charsets_for_string_result_with_comparison() inside "protected" section in Item_func_or_sum.
-
- 20 Sep, 2015 1 commit
-
-
Oleksandr Byelkin authored
-
- 19 Sep, 2015 2 commits
-
-
Nirbhay Choubey authored
-
Jan Lindström authored
-
- 18 Sep, 2015 3 commits
-
-
Alexander Barkov authored
MDEV-8816 Equal field propagation is not applied for WHERE varbinary_column>=_utf8'a' COLLATE utf8_general_ci AND varbinary_column='A'; 1. Removing the legacy code that disabled equal field propagation in cases when comparison is done as VARBINARY. This is now correctly handled by the new propagation code in Item_xxx::propagate_equal_fields() and Field_str::can_be_substituted_to_equal_item (the bug fix). 2. Also, removing legacy (pre-MySQL-4.1) Arg_comparator methods compare_binary_string() and compare_e_binary_string(), as VARBINARY comparison is correcty handled in compare_string() and compare_e_string() by the corresponding VARBINARY collation handler implemented in my_charset_bin. (not really a part of the bug fix)
-
Oleksandr Byelkin authored
Printing non-trivial HAVING added.
-
Alexander Barkov authored
WHERE COALESCE(time_column)=TIME('00:00:00') AND COALESCE(time_column)=DATE('2015-09-11') MDEV-8814 Wrong result for WHERE datetime_column > TIME('00:00:00')
-
- 17 Sep, 2015 4 commits
-
-
Alexander Barkov authored
which did not return a correct "end_of_num" pointer in case of character sets with mbminlen>1 (ucs2, utf16, utf16le, utf32). The bug caused sporadic test failures on BuildBot, as well "uninitialized memory read" errors in valgrind builds.
-
Jan Lindström authored
is linked statically and dynamic plugin is not available.
-
Oleksandr Byelkin authored
Added tid (thread ID) for system where it is present. ps -eL -o tid,pid,command shows the thread on Linux
-
Alexander Barkov authored
MDEV-8468 CAST and INSERT work differently for DECIMAL/INT vs DOUBLE for a string with trailing spaces
-
- 16 Sep, 2015 2 commits
-
-
Sergey Vojtovich authored
Contributed by Bill Parker. Added check for strndup() return value.
-
Jan Lindström authored
Allow enforce-storage-engine="" option and use that on mysql_install_db when doing bootstrap.
-
- 15 Sep, 2015 5 commits
-
-
Nirbhay Choubey authored
Updated address parsing logic to include IPv6 format.
-
Nirbhay Choubey authored
Fix the test case : switch to save_master_gtid.inc & sync_with_master_gtid.inc to sync slave with master.
-
Jan Lindström authored
-
Jan Lindström authored
MDEV-8799: Server crashes in btr_defragment_add_index, encryption.innodb-bad-key-change5 and alike fail in buildbot Problem was unsafe access to NULL pointer. Added additional checks to avoid access to NULL pointer.
-
Alexander Barkov authored
-
- 14 Sep, 2015 7 commits
-
-
Jan Lindström authored
-
Jan Lindström authored
MDEV-8772: Assertion failure in file ha_innodb.cc line 20027 when importing page compressed and encrypted tablespace using incorrect keys Add error handling to decryp function when decrypt fails during import.
-
Jan Lindström authored
MDEV-8769: Server crash at file btr0btr.ic line 122 when defragmenting encrypted table using incorrect keys Add error handling when getting block from encrypted table and decryption fails.
-
Jan Lindström authored
MDEV-8768: Server crash at file btr0btr.ic line 122 when checking encrypted table using incorrect keys Add error handling to btr_validate_index when index root block can't be read because block decryption fails.
-
Jan Lindström authored
Add a new error message when table is encrypted but decryption fails. Use this new error message on InnoDB/XtraDB.
-
Elena Stepanova authored
-
Elena Stepanova authored
type_spatial_indexes test is now be re-enabled, and the new result file can be used for creating engine-specific rdiffs
-
- 13 Sep, 2015 1 commit
-
-
Alexander Barkov authored
-
- 12 Sep, 2015 1 commit
-
-
Jan Lindström authored
ALTER TABLE should either bypass enforce-storage-engine, or mysql_upgrade should refuse to run Allow user to alter contents of existing table without enforcing storage engine. However, enforce storage engine on ALTER TABLE x ENGINE=y;
-
- 11 Sep, 2015 9 commits
-
-
Kristian Nielsen authored
-
Kristian Nielsen authored
Adjust the test case to try and avoid some sporadic failures on loaded test hosts. The wait for SQL thread to stop may complete before worker threads have completed.
-
Alexander Barkov authored
-
Alexander Barkov authored
The problem was fixed earlier by one of the MDEV-8728 subtasks. Adding a test case only.
-
Alexander Barkov authored
Disable IDENTITY_SUBST propagation for ZEROFILL columns, as discussed with Sergei.
-
Kristian Nielsen authored
Conflicts: sql/rpl_rli.cc
-
Kristian Nielsen authored
The code was using the wrong variable when comparing the binlog name for the UNTIL position. This could cause the comparison to fail after binlog rotation, in turn causing the UNTIL clause to not trigger slave stop.
-
Alexander Barkov authored
MDEV-8755 Equal field propagation is not performed any longer for the IN list when multiple comparison types
-
Alexander Barkov authored
MDEV-8712 Wrong result for SELECT..WHERE latin1_bin_column=_latin1'a' AND latin1_bin_column='A'
-
- 10 Sep, 2015 1 commit
-
-
Alexander Barkov authored
MDEV-8754 Wrong result for SELECT..WHERE year_field=2020 AND NULLIF(year_field,2010)='2020' Problems: 1. Item_func_nullif stored a copy of args[0] in a private member m_args0_copy, which was invisible for the inherited Item_func menthods, like update_used_tables(). As a result, after equal field propagation things like Item_func_nullif::const_item() could return wrong result and a non-constant NULLIF() was erroneously treated as a constant at optimize_cond() time. Solution: removing m_args0_copy and storing the return value item in args[2] instead. 2. Equal field propagation did not work well for Item_fun_nullif. Solution: using ANY_SUBST for args[0] and args[1], as they are in comparison, and IDENTITY_SUBST for args[2], as it's not in comparison.
-