~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.h

Merge Stewart's basic discovery branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
938
938
int ha_create_table(Session *session, const char *path,
939
939
                    const char *db, const char *table_name,
940
940
                    HA_CREATE_INFO *create_info,
941
 
                    bool update_create_info);
 
941
                    bool update_create_info,
 
942
                    drizzled::message::Table *table_proto);
942
943
int ha_delete_table(Session *session, const char *path,
943
944
                    const char *db, const char *alias, bool generate_warning);
944
945
 
947
948
 
948
949
int ha_find_files(Session *session,const char *db,const char *path,
949
950
                  const char *wild, bool dir, List<LEX_STRING>* files);
950
 
int ha_table_exists_in_engine(Session* session, const char* db, const char* name, StorageEngine **engine= NULL);
951
951
 
952
952
/* key cache */
953
953
extern "C" int ha_init_key_cache(const char *name, KEY_CACHE *key_cache);