diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2002-06-18 17:38:06 +0300 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2002-06-18 17:38:06 +0300 |
commit | 33956cb04b17178925d3e81542927027078340a7 (patch) | |
tree | 13f620da68db6d9e260cb91c9a8c34486a17c8f2 /sql/sql_update.cc | |
parent | eff2bde74a0f68cab213f4d3836b660e7575b0f3 (diff) | |
download | mariadb-git-33956cb04b17178925d3e81542927027078340a7.tar.gz |
Fixed some comments , plus introduced some tests so that I do not
make some new mistakes.
Diffstat (limited to 'sql/sql_update.cc')
-rw-r--r-- | sql/sql_update.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_update.cc b/sql/sql_update.cc index 91e464c376e..7fcd25e2acf 100644 --- a/sql/sql_update.cc +++ b/sql/sql_update.cc @@ -506,7 +506,7 @@ multi_update::prepare(List<Item> &values) void multi_update::initialize_tables(JOIN *join) { -/* +#ifdef NOT_YET We skip it as it only makes a mess ........... TABLE_LIST *walk; table_map tables_to_update_from=0; @@ -522,12 +522,12 @@ multi_update::initialize_tables(JOIN *join) { We are going to update from this table TABLE *tbl=walk->table=tab->table; - Don't use KEYREAD optimization on this table + /* Don't use KEYREAD optimization on this table */ tbl->no_keyread=1; walk=walk->next; } } -*/ +#endif } |