~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Brian Aker
  • Date: 2009-01-18 01:49:40 UTC
  • Revision ID: brian@gir-3.local-20090118014940-co9651fk7hla6gqg
Removed unused session param from list_open_tables()

Show diffs side-by-side

added added

removed removed

Lines of Context:
508
508
 
509
509
  SYNOPSIS
510
510
    list_open_tables()
511
 
    session                     Thread Session
512
511
    wild                SQL like expression
513
512
 
514
513
  NOTES
521
520
    #           Pointer to list of names of open tables.
522
521
*/
523
522
 
524
 
OPEN_TableList *list_open_tables(Session *session __attribute__((unused)),
525
 
                                  const char *db, const char *wild)
 
523
OPEN_TableList *list_open_tables(const char *db, const char *wild)
526
524
{
527
525
  int result = 0;
528
526
  OPEN_TableList **start_list, *open_list;