diff options
Diffstat (limited to 'sql/sql_lex.cc')
-rw-r--r-- | sql/sql_lex.cc | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/sql/sql_lex.cc b/sql/sql_lex.cc index d6cfd555c40..a3718731d8c 100644 --- a/sql/sql_lex.cc +++ b/sql/sql_lex.cc @@ -1167,7 +1167,13 @@ TABLE_LIST* st_select_lex_node::get_table_list() { return 0; } List<Item>* st_select_lex_node::get_item_list() { return 0; } 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, + ulong table_join_options, + thr_lock_type flags, + List<String> *use_index, + List<String> *ignore_index, + LEX_STRING *option) ulong st_select_lex_node::get_table_join_options() { return 0; @@ -1191,6 +1197,28 @@ bool st_select_lex::test_limit() return(0); } + + + + + + + + + + + + + + + + + + + + + + /* Interface method of table list creation for query |