~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:29:56 UTC
  • mto: This revision was merged to the branch mainline in revision 1047.
  • Revision ID: brian@gaz-20090603192956-jrxrsu2ppw71yw3n
Formatting/style cleanup.

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