mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +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:
@ -37,7 +37,7 @@
|
||||
** T<>nu Samuel <tonu@please.do.not.remove.this.spam.ee>
|
||||
**/
|
||||
|
||||
#define DUMP_VERSION "8.12"
|
||||
#define DUMP_VERSION "8.13"
|
||||
|
||||
#include <global.h>
|
||||
#include <my_sys.h>
|
||||
@ -808,7 +808,7 @@ static uint getTableStructure(char *table, char* db)
|
||||
putc(',', sql_file);
|
||||
fputs(quote_name(row[4],name_buff), sql_file);
|
||||
if (row[7])
|
||||
fprintf(sql_file, "(%s)",row[7]); /* Sub key */
|
||||
fprintf(sql_file, " (%s)",row[7]); /* Sub key */
|
||||
}
|
||||
if (keynr)
|
||||
putc(')', sql_file);
|
||||
|
Reference in New Issue
Block a user