~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2010-03-31 05:53:34 UTC
  • Revision ID: brian@gaz-20100331055334-yqqmzlgqb2xq1p5b
Mass overhaul to use schema_identifier.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1125
1125
      @retval false Success
1126
1126
      @retval true  Out-of-memory error
1127
1127
  */
1128
 
  bool set_db(const char *new_db, size_t new_db_len);
 
1128
  bool set_db(const std::string &new_db);
1129
1129
 
1130
1130
  /*
1131
1131
    Copy the current database to the argument. Use the current arena to
1433
1433
  Table *find_temporary_table(TableIdentifier &identifier);
1434
1434
 
1435
1435
  void doGetTableNames(CachedDirectory &directory,
1436
 
                       const std::string& db_name,
 
1436
                       SchemaIdentifier &schema_identifier,
1437
1437
                       std::set<std::string>& set_of_names);
1438
 
  void doGetTableNames(const std::string& db_name,
 
1438
  void doGetTableNames(SchemaIdentifier &schema_identifier,
1439
1439
                       std::set<std::string>& set_of_names);
1440
1440
 
1441
1441
  int doGetTableDefinition(drizzled::TableIdentifier &identifier,