~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.cc

  • Committer: Brian Aker
  • Date: 2008-12-05 07:33:29 UTC
  • Revision ID: brian@tangent.org-20081205073329-5f0ejzseqs3ioaq5
Yet more unused.... damn annoying... (also tossed some prototypes that were
missing functions)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2376
2376
 
2377
2377
 
2378
2378
/*
2379
 
  Save current state of Query_tables_list for this LEX, and prepare it
2380
 
  for processing of new statemnt.
2381
 
 
2382
 
  SYNOPSIS
2383
 
    reset_n_backup_query_tables_list()
2384
 
      backup  Pointer to Query_tables_list instance to be used for backup
2385
 
*/
2386
 
 
2387
 
void LEX::reset_n_backup_query_tables_list(Query_tables_list *)
2388
 
{
2389
 
}
2390
 
 
2391
 
 
2392
 
/*
2393
 
  Restore state of Query_tables_list for this LEX from backup.
2394
 
 
2395
 
  SYNOPSIS
2396
 
    restore_backup_query_tables_list()
2397
 
      backup  Pointer to Query_tables_list instance used for backup
2398
 
*/
2399
 
 
2400
 
void LEX::restore_backup_query_tables_list(Query_tables_list *)
2401
 
{
2402
 
}
2403
 
 
2404
 
 
2405
 
/*
2406
2379
  Checks for usage of routines and/or tables in a parsed statement
2407
2380
 
2408
2381
  SYNOPSIS