Sergey Petrunya
edd980225a
Fix for MDEV-4836 fix: take into account situation where "notnull_col IS NULL" is not
...
a direct child of the WHERE clause item, but rather is embedded inside Item_cond_and or
Item_cond_or.
2013-08-26 21:38:04 +04:00
Sergei Golubchik
214c43ba96
bugfix: storage engine might return a negative error code, but it shouldn't
...
be ignored on return
2013-08-26 21:14:34 +04:00
Sergei Golubchik
38e2340a8e
mtr bug: files outside of both the suite dir and the overlay dir, were
...
treated as coming from the overlay.
2013-08-26 21:14:01 +04:00
Sergei Golubchik
a73972bfea
don't decide on extended keys by DB_TYPE_INNODB, use hton->flags
2013-08-26 21:13:17 +04:00
Sergei Golubchik
6140393af0
HA_ERR_TABLE_DEF_CHANGED is normal situation, not an server-wide exception,
...
don't log it to the error log.
2013-08-26 21:04:10 +04:00
Sergei Golubchik
de04890588
typo fixed (boolean index attributes didn't work)
2013-08-26 21:03:01 +04:00
Sergei Golubchik
d126993404
MDEV-4951 drop user leaves privileges
...
It's safe to delete from HASH when traversing it *backwards*, but not *forwards*.
2013-08-28 07:49:53 +02:00
Sergey Petrunya
af753c2188
Fix for MDEV-4836: Merge with current 5.5
2013-08-26 16:31:58 +04:00
Sergey Petrunya
7907b9b4da
Merge fix for MDEV-4942, 5.3->5.5
2013-08-26 16:23:14 +04:00
Igor Babaev
dbc84ff96c
Fixed bug mdev-4942.
...
Made sure that degenerate conjunctions/disjunctions are obtained from
AND/OR conditions.
2013-08-23 22:17:02 -07:00
Igor Babaev
b9ce8e608f
Merge
2013-08-23 08:34:35 -07:00
Igor Babaev
540eeebbb0
Fixed bug mdev-4420.
...
The code of JOIN::optimize that performed substitutions for the best equal
field in all ref items did not take into account that a multiple equality
could contain the result of the single-value subquery if the subquery is
inexpensive. This code was corrected.
Also made necessary corresponding corrections in the code of make_join_select().
2013-08-23 07:25:45 -07:00
Sergey Petrunya
970542ec90
MDEV-4836: Wrong result on <not null date column> IS NULL (old documented hack stopped working)
...
- When applying optimization introduced by MDEV-4817, ignore the conditions that have form
"datetime_not_null_col IS NULL".
2013-08-23 16:32:56 +04:00
Alexander Barkov
d1adae3707
Merging from 5.3
...
pending merges:
Alexander Barkov 2013-08-22 MDEV-4804 Date comparing false result
2013-08-22 16:23:54 +04:00
Alexander Barkov
c40de1df36
MDEV-4804 Date comparing false result
2013-08-22 15:20:27 +04:00
Sergey Petrunya
f5ea23b6e2
Automatic merge
2013-08-22 14:13:46 +04:00
Sergey Petrunya
37e9714c5e
MDEV-4840: Wrong result (missing rows) on LEFT JOIN with InnoDB tables
...
Fix two problems in table elimination code:
- Before marking a "value" as bound, check if it is already bound. Marking the
same value as bound twice could confuse a module that depends on this value,
because Dep_module_XXX use counters to know when they become bound.
- When checking whether field is part of a key, ignore "extended keys" property.
2013-08-22 14:12:10 +04:00
Igor Babaev
2ead54d0fb
Merge
2013-08-21 12:34:58 -07:00
Igor Babaev
5d5f3a1ee8
Merge 5.3->5.5
2013-08-21 11:27:02 -07:00
unknown
f8af4423b4
MDEV-4908: Assertion `((Item_cond *) cond)->functype() == ((Item_cond *) new_item)->functype()' fails on a query with IN and equal conditions, AND/OR, materialization+semijoin
...
A new AND Item should be prepared (fix_field() call) before using.
2013-08-21 17:42:09 +03:00
Igor Babaev
99992f6ec4
Fixed a bug/typo in the patch for mdev-4355, noticed after the patch
...
had been merged into 5.5.
Corrected the result of the output from the test case for mdev 4895.
2013-08-20 13:47:13 -07:00
unknown
5fdb531d77
Fix bug MDEV-4895 Valgrind warnings (Conditional jump or move depends on uninitialised value) in Field_datetime::get_date on GREATEST(..) IS NULL
...
Analysis:
The cause of the valgrind warning was an attempt to evaluate a Field that was not yet read.
The reason was that on one hand Item_func_isnotnull was marked as constant by
Item_func_isnotnull::update_used_tables, and this allowed eval_const_cond() to be called.
On the other hand Item_func_isnotnull::val_int() evaluated its argument as if it was not
constant.
Solution:
The fix make sure that Item_func_isnotnull::val_int() doesn't evaluate its argument when
it is constant and cannot be NULL, because the result is known in this case.
2013-08-20 17:08:03 +03:00
Jan Lindström
c97ae6b56f
MDEV-4923 Incorrect merge on XtraDB os0file.c. Function os_file_set_atomic_writes returns TRUE when successfull and FALSE at failure.
2013-08-20 16:05:34 +03:00
unknown
84a2fb4836
Backport from 10.0-base fix for tests failing when vardir has no execute permissions.
2013-08-20 10:42:38 +02:00
Igor Babaev
008371b627
Backported from maria-5.5 the fix in the patch for mdev-4418 that
...
had been discovered when merging the patch from 5.3 into 5.5.
2013-08-19 14:24:48 -07:00
Igor Babaev
e1095c1a22
Merge
2013-08-19 08:55:49 -07:00
Igor Babaev
b4e994d77b
Merge
2013-08-18 22:13:49 -07:00
Igor Babaev
4eddb2c221
Merge 5.3->5.5.
...
In particular:
Merged the patch for bug mdev-4418 from 5.3 into 5.5.
Fixed a bug in the patch that should be backported to 5.3.
2013-08-18 19:58:51 -07:00
Sergei Golubchik
c06eaf21b7
MDEV-4165 [PATCH] RFE: make tmpdir a build-time configurable option
...
support -DTMPDIR=/path in CMakeLists.txt
Patch by Honza Horak.
2013-08-17 17:20:09 +04:00
Igor Babaev
25c152018d
Fixed bug mdev-4418.
...
After single row substitutions there might appear new equalities.
They should be properly propagated to all AND/OR levels the WHERE
condition. It's done now with an additional call of remove_eq_conds().
2013-08-16 22:01:47 -07:00
Igor Babaev
752d5d022d
Merge
2013-08-15 16:59:20 -07:00
Igor Babaev
fa7f677218
Fixed bug mdev-4355.
...
This patch almost totally revised the patch for bug mdev-4177.
The latter had too many defects. In particular, it did not
propagate multiple equalities formed when merging a degenerate
disjunct into underlying AND formula.
2013-08-15 14:16:16 -07:00
Igor Babaev
960720b10d
Merge 5.2->5.3
2013-08-15 14:04:20 -07:00
Igor Babaev
7ba78277b4
Merge 5.1->5.2
2013-08-14 20:37:38 -07:00
Sergei Golubchik
758b012ff2
fix a comment
2013-08-14 11:12:57 +02:00
Igor Babaev
6dd9f049ab
Fixed bug mdev-4894.
...
This a an old legacy performance bug.
When a very selective range scan existed for the second table in a join,
and, at the same time, there was another range condition depending on the
fields of the first table, the optimizer chose a plan with
'Range checked for each record'. This plan was extremely inefficient in
comparison with the regular selective range scan.
As a matter of fact the range scan chosen for each record was the same as
that selective range scan.
Changed the test case for bug 24776 to preserve the old output for explain.
2013-08-13 15:21:11 -07:00
Alexander Barkov
b59738a598
Merge from 5.3
...
modified:
mysql-test/r/dyncol.result
mysql-test/r/type_time.result
mysql-test/t/dyncol.test
mysql-test/t/type_time.test
mysys/ma_dyncol.c
sql/item.cc
sql/item_func.cc
pending merges:
Alexander Barkov 2013-08-12 MDEV-4652 Wrong result for CONCAT(GREATEST(T...
sanja@montyprogr... 2013-08-01 MDEV-4811 Assertion `offset < 0x1f' f...
2013-08-12 17:33:08 +04:00
Alexander Barkov
f1b4718ec8
MDEV-4652 Wrong result for CONCAT(GREATEST(TIME('00:00:01'),TIME('00:00:00'))
2013-08-12 16:47:59 +04:00
Sergei Golubchik
b718dc449b
mysql --skip-column-names flag should not affect alignment of field values,
...
set num_flag[] unconditionally, not under "if (column_names)"
http://ronaldbradford.com/blog/unexplained-trivial-mysql-behavior-2013-08-02/
2013-08-08 13:33:15 +02:00
Alexander Barkov
cafe9d13f6
Merge from 5.3
...
pending merges:
Alexander Barkov 2013-08-08 MDEV-4653 Wrong result for CONVERT_TZ(TIME('...
2013-08-08 13:41:21 +04:00
Alexander Barkov
e9db0da787
MDEV-4653 Wrong result for CONVERT_TZ(TIME('00:00:00'),'+00:00','+7:5')
2013-08-08 12:58:28 +04:00
Alexander Barkov
62484d2e23
Merge from 5.3
...
pending merges:
Alexander Barkov 2013-08-08 MDEV-4512 Valgrind warnings in my_long10_to_...
2013-08-08 11:48:49 +04:00
Alexander Barkov
e6a6f653a9
MDEV-4512 Valgrind warnings in my_long10_to_str_8bit on INTERVAL and DATE_ADD with incorrect types
...
Fixing a typo: bit AND (&) was erroneously used instead of logical AND (&&)
2013-08-08 11:36:03 +04:00
unknown
220623572d
Fix possible race condition in Query cache.
2013-08-05 17:34:38 +03:00
Sergey Petrunya
96340a405a
Automatic merge
2013-08-05 20:59:15 +04:00
Elena Stepanova
f2b84e305c
Fixes for storage_engine tests diverged from the main line
2013-08-05 21:21:21 +04:00
Sergey Petrunya
c98cd2c816
Update test results after fix for MDEV-4687
2013-08-05 20:57:48 +04:00
Elena Stepanova
b9f61c14b7
Deliberate change in behavior introduced in MySQL 5.5.31 along with the
...
partitioning enhancement for Bug#14521864
2013-08-05 20:31:29 +04:00
Elena Stepanova
32e56e7e14
The test was non-deterministic while choosing an alternative storage
...
engine
2013-08-05 18:42:22 +04:00
Elena Stepanova
f596d28df6
Deliberate change in behavior introduced along with the fix for MDEV-4310
2013-08-05 18:30:12 +04:00