diff options
author | monty@mashka.mysql.fi <> | 2003-01-09 22:42:31 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-01-09 22:42:31 +0200 |
commit | bf683af4cea9a9efc3e524d5aabde4886e93540f (patch) | |
tree | f816bf52a43930fec89dbe67f90d81dd28b28a78 /sql/sql_lex.h | |
parent | f8e660d88ca64d2f7a1be58acbe57d777d20b122 (diff) | |
download | mariadb-git-bf683af4cea9a9efc3e524d5aabde4886e93540f.tar.gz |
Post merge fix
Allow empty key list in USE|IGNORE|FORCE INDEX()
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index b32e4489b01..4b6ac927f07 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -243,7 +243,7 @@ public: virtual List<Item>* get_item_list(); virtual List<String>* get_use_index(); virtual List<String>* get_ignore_index(); - virtual ulong table_join_options(); + virtual ulong get_table_join_options(); virtual TABLE_LIST *add_table_to_list(THD *thd, Table_ident *table, LEX_STRING *alias, ulong table_options, @@ -375,7 +375,7 @@ public: List<Item>* get_item_list(); List<String>* get_use_index(); List<String>* get_ignore_index(); - ulong table_join_options(); + ulong get_table_join_options(); TABLE_LIST* add_table_to_list(THD *thd, Table_ident *table, LEX_STRING *alias, ulong table_options, |