diff options
author | monty@mysql.com <> | 2004-03-17 10:30:40 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2004-03-17 10:30:40 +0200 |
commit | 44667503b75b539e43a057743f7baefce418d4d6 (patch) | |
tree | 2f18de7b832ebd37828631dccd3562ffc5611fa7 /sql/sql_parse.cc | |
parent | 350b4335696fc88efa2bbf2139d2f8bf9aa5701c (diff) | |
download | mariadb-git-44667503b75b539e43a057743f7baefce418d4d6.tar.gz |
After merge fixes
Diffstat (limited to 'sql/sql_parse.cc')
-rw-r--r-- | sql/sql_parse.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index dd59bef1191..690b4133f61 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -120,7 +120,7 @@ static bool end_active_trans(THD *thd) inline bool all_tables_not_ok(THD *thd, TABLE_LIST *tables) { return (table_rules_on && tables && !tables_ok(thd,tables) && - ((thd->lex.sql_command != SQLCOM_DELETE_MULTI) || + ((thd->lex->sql_command != SQLCOM_DELETE_MULTI) || !tables_ok(thd, (TABLE_LIST *)thd->lex->auxilliary_table_list.first))); } |