diff options
author | bell@sanja.is.com.ua <> | 2002-12-06 21:55:53 +0200 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2002-12-06 21:55:53 +0200 |
commit | 4506ab9ef1865c7a80c247173dc52a7325813d1d (patch) | |
tree | 543f801c8dae22e0afb7661bcbcfac306dff0b11 /sql/sql_union.cc | |
parent | f1858ec33148388e5456422be3d6b363291d9636 (diff) | |
download | mariadb-git-4506ab9ef1865c7a80c247173dc52a7325813d1d.tar.gz |
_NEW_ IN/ALL/ANY/SOME behaviour with NULL (SCRUM related)
optimization of left expression evaluation
more descriptive method name
Diffstat (limited to 'sql/sql_union.cc')
-rw-r--r-- | sql/sql_union.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_union.cc b/sql/sql_union.cc index e170f6c040e..43340ad723f 100644 --- a/sql/sql_union.cc +++ b/sql/sql_union.cc @@ -216,7 +216,7 @@ int st_select_lex_unit::exec() if (optimized && item && item->assigned()) { item->assigned(0); // We will reinit & rexecute unit - item->assign_null(); + item->reset(); table->file->delete_all_rows(); } for (SELECT_LEX *sl= first_select(); sl; sl= sl->next_select()) |