1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

join_outer.result, join_outer.test:

Added a test case for bug #9017.
item_cmpfunc.h:
  A wrong not_null_tables method for Item_cond_xor
  caused a conversion of a left join into an inner join
  that was not valid.
This commit is contained in:
igor@rurik.mysql.com
2005-03-12 23:31:52 -08:00
parent d114066174
commit a90d2bd97c
3 changed files with 42 additions and 0 deletions

View File

@ -1013,6 +1013,7 @@ public:
enum Type type() const { return FUNC_ITEM; }
longlong val_int();
const char *func_name() const { return "xor"; }
table_map not_null_tables() const { return and_tables_cache; }
};