~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.h

  • Committer: Brian Aker
  • Date: 2009-05-27 21:11:30 UTC
  • mto: This revision was merged to the branch mainline in revision 1040.
  • Revision ID: brian@gaz-20090527211130-10yq3d5gee3pwl9w
Remove lower case filename bits (aka we just lock into the most compatible
method, which is what we have been doing).

Removed a number of dead function endings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1021
1021
/* these are called by storage engines */
1022
1022
void trans_register_ha(Session *session, bool all, StorageEngine *engine);
1023
1023
 
1024
 
void table_case_convert(char * name, uint32_t length);
1025
 
const char *table_case_name(HA_CREATE_INFO *info, const char *name);
1026
 
 
1027
 
extern uint32_t lower_case_table_names;
1028
1024
uint32_t filename_to_tablename(const char *from, char *to, uint32_t to_length);
1029
1025
uint32_t tablename_to_filename(const char *from, char *to, uint32_t to_length);
1030
1026