summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorunknown <Sinisa@sinisa.nasamreza.org>2002-06-18 17:38:06 +0300
committerunknown <Sinisa@sinisa.nasamreza.org>2002-06-18 17:38:06 +0300
commitadc508c9011ded5506277d564c641070c0d9dc4d (patch)
tree13f620da68db6d9e260cb91c9a8c34486a17c8f2 /sql
parenta35e083b1329b88f2f468d7983257484a9106feb (diff)
downloadmariadb-git-adc508c9011ded5506277d564c641070c0d9dc4d.tar.gz
Fixed some comments , plus introduced some tests so that I do not
make some new mistakes.
Diffstat (limited to 'sql')
-rw-r--r--sql/sql_update.cc6
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
}