~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.h

  • Committer: Brian Aker
  • Date: 2009-06-08 02:42:24 UTC
  • mfrom: (1054.1.6 merge)
  • Revision ID: brian@gaz-20090608024224-zlff1bpq62r8m5gy
Removal of LOCK TABLES.

Show diffs side-by-side

added added

removed removed

Lines of Context:
139
139
int open_tables(Session *session, TableList **tables, uint32_t *counter, uint32_t flags);
140
140
/* open_and_lock_tables with optional derived handling */
141
141
int open_and_lock_tables_derived(Session *session, TableList *tables, bool derived);
142
 
/* simple open_and_lock_tables without derived handling */
143
 
inline int simple_open_n_lock_tables(Session *session, TableList *tables)
144
 
{
145
 
  return open_and_lock_tables_derived(session, tables, false);
146
 
}
147
142
/* open_and_lock_tables with derived handling */
148
143
inline int open_and_lock_tables(Session *session, TableList *tables)
149
144
{