~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cursor.h

Testing bug fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
class TableList;
65
65
class TableShare;
66
66
class Select_Lex_Unit;
67
 
struct st_foreign_key_info;
68
 
typedef struct st_foreign_key_info FOREIGN_KEY_INFO;
 
67
class ForeignKeyInfo;
69
68
struct order_st;
70
69
 
71
70
class Item;
500
499
   */
501
500
  virtual bool can_switch_engines(void) { return true; }
502
501
  /** used in REPLACE; is > 0 if table is referred by a FOREIGN KEY */
503
 
  virtual int get_foreign_key_list(Session *, List<FOREIGN_KEY_INFO> *)
 
502
  virtual int get_foreign_key_list(Session *, List<ForeignKeyInfo> *)
504
503
  { return 0; }
505
504
  virtual uint32_t referenced_by_foreign_key() { return 0;}
506
505
  virtual void free_foreign_key_create_info(char *) {}