~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/rpl_rli.h

  • Committer: Brian Aker
  • Date: 2008-08-16 22:34:15 UTC
  • mto: This revision was merged to the branch mainline in revision 346.
  • Revision ID: brian@tangent.org-20080816223415-n24esdpfcqi4pwpy
Refactor around classes. TABLE_LIST has been factored out of table.h

Show diffs side-by-side

added added

removed removed

Lines of Context:
106
106
    created temporary tables. Modified only on init/end and by the SQL
107
107
    thread, read only by SQL thread.
108
108
  */
109
 
  TABLE *save_temporary_tables;
 
109
  Table *save_temporary_tables;
110
110
 
111
111
  /*
112
112
    standard lock acquistion order to avoid deadlocks:
301
301
  uint32_t tables_to_lock_count;        /* RBR: Count of tables to lock */
302
302
  table_mapping m_table_map;      /* RBR: Mapping table-id to table */
303
303
 
304
 
  inline table_def *get_tabledef(TABLE *tbl)
 
304
  inline table_def *get_tabledef(Table *tbl)
305
305
  {
306
306
    table_def *td= 0;
307
307
    for (TABLE_LIST *ptr= tables_to_lock; ptr && !td; ptr= ptr->next_global)