1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

sql_show.cc, handler.h, handler.cc:

Add foreign key defs to SHOW CREATE TABLE


sql/handler.cc:
  Add foreign key defs to SHOW CREATE TABLE
sql/handler.h:
  Add foreign key defs to SHOW CREATE TABLE
sql/sql_show.cc:
  Add foreign key defs to SHOW CREATE TABLE
This commit is contained in:
unknown
2002-03-21 18:05:46 +02:00
parent d3c0752b6a
commit b83d55d9c5
3 changed files with 18 additions and 5 deletions

View File

@@ -294,7 +294,9 @@ public:
virtual char *update_table_comment(const char * comment)
{ return (char*) comment;}
virtual void append_create_info(String *packet) {}
virtual char* get_foreign_key_create_info()
{ return(NULL);} /* gets foreign key create string from InnoDB */
virtual void free_foreign_key_create_info(char* str) {}
/* The following can be called without an open handler */
virtual const char *table_type() const =0;
virtual const char **bas_ext() const =0;