diff options
author | monty@mashka.mysql.fi <> | 2003-01-09 22:43:23 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-01-09 22:43:23 +0200 |
commit | c9dc5a206bd162b10a3a1a2bebc054cf3c5a6ed0 (patch) | |
tree | 5ffbc6660efade54ba4bc490d83c1538515feb3e /sql/sql_lex.cc | |
parent | af76ac08fd64f57bb1939db1cc6b39b18eae969f (diff) | |
parent | bf683af4cea9a9efc3e524d5aabde4886e93540f (diff) | |
download | mariadb-git-c9dc5a206bd162b10a3a1a2bebc054cf3c5a6ed0.tar.gz |
Merge work:/home/bk/mysql-4.1 into mashka.mysql.fi:/home/my/mysql-4.1
Diffstat (limited to 'sql/sql_lex.cc')
-rw-r--r-- | sql/sql_lex.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sql/sql_lex.cc b/sql/sql_lex.cc index c7c7a97cdc2..dda3d4e822e 100644 --- a/sql/sql_lex.cc +++ b/sql/sql_lex.cc @@ -1171,13 +1171,14 @@ List<String>* st_select_lex_node::get_use_index() { return 0; } List<String>* st_select_lex_node::get_ignore_index() { return 0; } TABLE_LIST *st_select_lex_node::add_table_to_list(THD *thd, Table_ident *table, LEX_STRING *alias, - bool updating, + ulong table_join_options, thr_lock_type flags, List<String> *use_index, List<String> *ignore_index) { return 0; } +ulong st_select_lex_node::get_table_join_options() { return 0; } /* This is used for UNION & subselect to create a new table list of all used @@ -1334,6 +1335,11 @@ List<String>* st_select_lex::get_ignore_index() return ignore_index_ptr; } +ulong st_select_lex::get_table_join_options() +{ + return table_join_options; +} + /* There are st_select_lex::add_table_to_list & st_select_lex::set_lock_for_tables in sql_parse.cc |