diff options
author | bell@laptop.sanja.is.com.ua <> | 2003-08-20 17:35:12 +0300 |
---|---|---|
committer | bell@laptop.sanja.is.com.ua <> | 2003-08-20 17:35:12 +0300 |
commit | 30913419ec015eac99f8112e4be0870aa11ec9cc (patch) | |
tree | ae1a08abada36c655dfdf7505487c1f3319aef7f /sql/item_subselect.cc | |
parent | dd9cbce47bc33a90016375cf0ad6fed12f92d029 (diff) | |
download | mariadb-git-30913419ec015eac99f8112e4be0870aa11ec9cc.tar.gz |
after merge changing
uninitialized value fixed
Diffstat (limited to 'sql/item_subselect.cc')
-rw-r--r-- | sql/item_subselect.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_subselect.cc b/sql/item_subselect.cc index 36b65ef486e..cbda995504c 100644 --- a/sql/item_subselect.cc +++ b/sql/item_subselect.cc @@ -148,7 +148,7 @@ void Item_subselect::fix_length_and_dec() inline table_map Item_subselect::used_tables() const { return (table_map) (engine->dependent() ? 1L : - (engine->uncacheable() ? OUTER_REF_TABLE_BIT : 0L)); + (engine->uncacheable() ? RAND_TABLE_BIT : 0L)); } Item_singlerow_subselect::Item_singlerow_subselect(THD *thd, |