~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cursor.h

Added code necessary for building plugins dynamically.
Merged in changes from lifeless to allow autoreconf to work.
Touching plugin.ini files now triggers a rebuid - so config/autorun.sh is no
longer required to be run after touching those.
Removed the duplicate plugin names - also removed the issue that getting them
different would silently fail weirdly later.

Show diffs side-by-side

added added

removed removed

Lines of Context:
911
911
bool mysql_delete(Session *session, TableList *table_list, COND *conds,
912
912
                  SQL_LIST *order, ha_rows rows, uint64_t options,
913
913
                  bool reset_auto_increment);
914
 
bool mysql_truncate(Session *session, TableList *table_list, bool dont_send_ok);
 
914
bool mysql_truncate(Session& session, TableList *table_list, bool dont_send_ok);
915
915
TableShare *get_table_share(Session *session, TableList *table_list, char *key,
916
916
                             uint32_t key_length, uint32_t db_flags, int *error);
917
917
TableShare *get_cached_table_share(const char *db, const char *table_name);