Systems for MySQL
The world's most popular open source database
Contact a MySQL Representative
Login | Register
Learn about new MySQL releases, technical articles, events and more.
00001 00002 #ifndef SQL_SHOW_H 00003 #define SQL_SHOW_H 00004 00005 /* Forward declarations */ 00006 class String; 00007 class THD; 00008 struct st_ha_create_information; 00009 struct st_table_list; 00010 typedef st_ha_create_information HA_CREATE_INFO; 00011 typedef st_table_list TABLE_LIST; 00012 00013 int store_create_info(THD *thd, TABLE_LIST *table_list, String *packet, 00014 HA_CREATE_INFO *create_info_arg); 00015 int view_store_create_info(THD *thd, TABLE_LIST *table, String *buff); 00016 00017 #endif /* SQL_SHOW_H */