~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/server_includes.h

  • Committer: Monty Taylor
  • Date: 2008-11-04 18:01:26 UTC
  • mto: (575.1.7 fix-headers)
  • mto: This revision was merged to the branch mainline in revision 579.
  • Revision ID: monty@inaugust.com-20081104180126-88cfh3g4q1szu7us
Moved some stuff out of handler.h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
315
315
#define is_schema_db(X) \
316
316
  !my_strcasecmp(system_charset_info, INFORMATION_SCHEMA_NAME.str, (X))
317
317
 
318
 
/* sql_handler.cc */
319
 
bool mysql_ha_open(Session *session, TableList *tables, bool reopen);
320
 
bool mysql_ha_close(Session *session, TableList *tables);
321
 
bool mysql_ha_read(Session *, TableList *,enum enum_ha_read_modes,char *,
322
 
                   List<Item> *,enum ha_rkey_function,Item *,ha_rows,ha_rows);
323
 
void mysql_ha_flush(Session *session);
324
 
void mysql_ha_rm_tables(Session *session, TableList *tables, bool is_locked);
325
 
void mysql_ha_cleanup(Session *session);
326
 
 
327
318
/* sql_base.cc */
328
319
#define TMP_TABLE_KEY_EXTRA 8
329
320
void set_item_name(Item *item,char *pos,uint32_t length);