diff --git a/BitKeeper/etc/logging_ok b/BitKeeper/etc/logging_ok index 8bf83e5a369..a508ba64c9c 100644 --- a/BitKeeper/etc/logging_ok +++ b/BitKeeper/etc/logging_ok @@ -1 +1,2 @@ mwagner@evoq.mwagner.org +tfr@coyote.emotion.ee diff --git a/client/mysqldump.c b/client/mysqldump.c index efb632cf5e4..ce6c64aa00e 100644 --- a/client/mysqldump.c +++ b/client/mysqldump.c @@ -37,7 +37,7 @@ ** Tõnu Samuel **/ -#define DUMP_VERSION "8.12" +#define DUMP_VERSION "8.13" #include #include @@ -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); diff --git a/sql/sql_show.cc b/sql/sql_show.cc index ecc31c4c57e..eda6731307b 100644 --- a/sql/sql_show.cc +++ b/sql/sql_show.cc @@ -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++) {