~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_share.h

  • Committer: Brian Aker
  • Date: 2009-07-16 22:37:01 UTC
  • mto: This revision was merged to the branch mainline in revision 1100.
  • Revision ID: brian@gaz-20090716223701-vbbbo8dmgd2ljqqo
Refactor TableShare has to be behind class.

Show diffs side-by-side

added added

removed removed

Lines of Context:
342
342
 
343
343
    return key_length;
344
344
  }
 
345
 
 
346
  static bool cacheStart(void);
 
347
  static void cacheStop(void);
 
348
  static void release(TableShare *share);
 
349
  static void release(const char *key, uint32_t key_length);
 
350
  static TableShare *getShare(const char *db, const char *table_name);
 
351
  static TableShare *getShare(Session *session, 
 
352
                              TableList *table_list, char *key,
 
353
                              uint32_t key_length, uint32_t, int *error);
345
354
};