317
317
It prepares a Select_Lex and a TableList object to represent the
318
318
given command as a SELECT parse tree.
320
@param session thread handle
321
@param lex current lex
322
@param table_ident table alias if it's used
323
@param schema_table_idx the type of the INFORMATION_SCHEMA table to be
320
@param session thread handle
321
@param lex current lex
322
@param table_ident table alias if it's used
323
@param schema_table_name the name of the INFORMATION_SCHEMA table to be
327
327
Due to the way this function works with memory and LEX it cannot
338
338
int prepare_schema_table(Session *session, LEX *lex, Table_ident *table_ident,
339
enum enum_schema_tables schema_table_idx)
339
const string& schema_table_name)
341
341
Select_Lex *schema_select_lex= NULL;
343
switch (schema_table_idx) {
346
case SCH_TABLE_NAMES:
351
if (lex->select_lex.db == NULL &&
352
lex->copy_db_to(&lex->select_lex.db, &dummy))
356
schema_select_lex= new Select_Lex();
357
db.str= schema_select_lex->db= lex->select_lex.db;
358
schema_select_lex->table_list.first= NULL;
359
db.length= strlen(db.str);
361
if (check_db_name(&db))
363
my_error(ER_WRONG_DB_NAME, MYF(0), db.str);
344
if (schema_table_name.compare("TABLES") == 0 ||
345
schema_table_name.compare("TABLE_NAMES") == 0)
349
if (lex->select_lex.db == NULL &&
350
lex->copy_db_to(&lex->select_lex.db, &dummy))
354
schema_select_lex= new Select_Lex();
355
db.str= schema_select_lex->db= lex->select_lex.db;
356
schema_select_lex->table_list.first= NULL;
357
db.length= strlen(db.str);
359
if (check_db_name(&db))
361
my_error(ER_WRONG_DB_NAME, MYF(0), db.str);
365
else if (schema_table_name.compare("COLUMNS") == 0 ||
366
schema_table_name.compare("STATISTICS") == 0)
371
368
assert(table_ident);
372
369
TableList **query_tables_last= lex->query_tables_last;
374
371
/* 'parent_lex' is used in init_query() so it must be before it. */
375
372
schema_select_lex->parent_lex= lex;
376
373
schema_select_lex->init_query();
377
if (!schema_select_lex->add_table_to_list(session, table_ident, 0, 0, TL_READ))
374
if (! schema_select_lex->add_table_to_list(session, table_ident, 0, 0, TL_READ))
379
378
lex->query_tables_last= query_tables_last;
382
case SCH_OPEN_TABLES:
389
381
Select_Lex *select_lex= lex->current_select;
390
382
assert(select_lex);
391
if (make_schema_select(session, select_lex, schema_table_idx))
383
if (make_schema_select(session, select_lex, schema_table_name))