diff options
author | unknown <bell@sanja.is.com.ua> | 2004-02-09 14:44:03 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-02-09 14:44:03 +0200 |
commit | 61f0e69cb60b9db858bad3b6de6fa0b8b2f03899 (patch) | |
tree | d823a9d8db9cbcd5878af1651e74b2afa0277116 /sql/sql_parse.cc | |
parent | 584ddfdab2316c0b0520c6903fe6bf4b8a435b0a (diff) | |
download | mariadb-git-61f0e69cb60b9db858bad3b6de6fa0b8b2f03899.tar.gz |
ufter revview fix (BUG#2120)
mysql-test/r/derived.result:
test of error handling in derived tables with UPDATE & DELETE
mysql-test/t/derived.test:
test of error handling in derived tables with UPDATE & DELETE
sql/mysql_priv.h:
opened tables counter added to avoid loop of tables calculating in lock_tables
sql/sql_acl.cc:
opened tables counter added to avoid loop of tables calculating in lock_tables, here it is just for compatibility
sql/sql_base.cc:
removed unneeded assignment
opened tables counter added to avoid loop of tables calculating in lock_tables
commentary fixed
sql/sql_derived.cc:
mysql_derived made static
variable res moved in place where it used
priveleges written in correct place
sql/sql_handler.cc:
opened tables counter added to avoid loop of tables calculating in lock_tables
sql/sql_parse.cc:
mistyping in commentary fixed
Diffstat (limited to 'sql/sql_parse.cc')
-rw-r--r-- | sql/sql_parse.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index 14696ce7478..42ea6039b6c 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -2669,8 +2669,8 @@ mysql_execute_command(THD *thd) { auxi->table= auxi->table_list->table; /* - Multi-delete can't be constucted over-union => we always have - single SELECT on top and have to check underlayed SELECTs of it + Multi-delete can't be constructed over-union => we always have + single SELECT on top and have to check underlaying SELECTs of it */ for (SELECT_LEX_UNIT *un= lex->select_lex.first_inner_unit(); un; |