~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.h

  • Committer: Brian Aker
  • Date: 2009-06-03 19:30:45 UTC
  • mfrom: (1046.1.6 merge)
  • Revision ID: brian@gaz-20090603193045-4xgeczyfixh07beg
MergeĀ forĀ Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
605
605
{
606
606
  struct        st_changed_table_list *next;
607
607
  char          *key;
608
 
  uint32_t        key_length;
 
608
  uint32_t key_length;
609
609
} CHANGED_TableList;
610
610
 
611
611
 
612
612
typedef struct st_open_table_list
613
613
{
614
614
  struct st_open_table_list *next;
615
 
  char  *db,*table;
 
615
  char  *db;
 
616
  char  *table;
616
617
  uint32_t in_use,locked;
617
618
} OPEN_TableList;
618
619