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

mysqldump.c Fix to add space between index name and column definition in CREATE TABLE statement

sql_show.cc	Fix to add space in SHOW CREATE TABLE between index name and column definitions


sql/sql_show.cc:
  Fix to add space in SHOW CREATE TABLE between index name and column definitions
client/mysqldump.c:
  Fix to add space between index name and column definition in CREATE TABLE statement
This commit is contained in:
unknown
2001-02-13 08:43:14 +02:00
parent a00ef17fdb
commit 8a31e9f04d
2 changed files with 3 additions and 3 deletions

View File

@@ -846,7 +846,7 @@ store_create_info(THD *thd, TABLE *table, String *packet)
if(i != primary_key)
append_identifier(thd,packet,key_info->name);
packet->append('(');
packet->append(" (", 2);
for (uint j=0 ; j < key_info->key_parts ; j++,key_part++)
{