~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.h

  • Committer: Brian Aker
  • Date: 2010-10-28 09:15:33 UTC
  • mto: (1887.1.2 merge)
  • mto: This revision was merged to the branch mainline in revision 1888.
  • Revision ID: brian@tangent.org-20101028091533-7ryls520gk16c6fd
OSX found a reference to a function that was no longer declared.

Show diffs side-by-side

added added

removed removed

Lines of Context:
132
132
                               const char *table_name);
133
133
TableList *unique_table(TableList *table, TableList *table_list,
134
134
                        bool check_alias= false);
135
 
void remove_db_from_cache(const SchemaIdentifier &schema_identifier);
136
135
 
137
 
/* bits for last argument to remove_table_from_cache() */
 
136
/* bits for last argument to table::Cache::singleton().removeTable() */
138
137
#define RTFC_NO_FLAG                0x0000
139
138
#define RTFC_OWNED_BY_Session_FLAG      0x0001
140
139
#define RTFC_WAIT_OTHER_THREAD_FLAG 0x0002
141
140
#define RTFC_CHECK_KILLED_FLAG      0x0004
142
 
bool remove_table_from_cache(Session *session, TableIdentifier &identifier, uint32_t flags);
143
141
 
144
142
void mem_alloc_error(size_t size);
145
143