diff options
author | Sergei Golubchik <serg@mariadb.org> | 2020-03-05 19:19:57 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2020-03-31 17:42:34 +0200 |
commit | 0515577d128318e1b62511846d88d0c56226168d (patch) | |
tree | 6339b3083879f29ce04fd77f10b7c4d6050e49e9 /sql/sql_select.cc | |
parent | 045510cb92448ab54ff8832b1947707287975bae (diff) | |
download | mariadb-git-0515577d128318e1b62511846d88d0c56226168d.tar.gz |
cleanup: prepare "update_handler" for WITHOUT OVERLAPS
* rename to a generic name
* move remaning initializations from query exec to prepare time
* simplify/unify key handling in open_table_from_share and delayed
* remove dead code
* move tests where they belong
Diffstat (limited to 'sql/sql_select.cc')
-rw-r--r-- | sql/sql_select.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/sql_select.cc b/sql/sql_select.cc index f78d2ac544c..9f4ddb4f357 100644 --- a/sql/sql_select.cc +++ b/sql/sql_select.cc @@ -18377,7 +18377,6 @@ TABLE *Create_tmp_table::start(THD *thd, table->copy_blobs= 1; table->in_use= thd; table->no_rows_with_nulls= param->force_not_null_cols; - table->check_unique_buf= NULL; table->s= share; init_tmp_table_share(thd, share, "", 0, "(temporary)", tmpname); |