1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

BUG#13724 conditionally added CONNECTION='connect string' for SHOW CREATE TABLE

This commit is contained in:
eric@mysql.com
2005-10-10 17:41:36 -07:00
parent bef189cc4e
commit 215ecd3322
3 changed files with 13 additions and 0 deletions

View File

@ -1023,6 +1023,11 @@ store_create_info(THD *thd, TABLE_LIST *table_list, String *packet)
packet->append(" COMMENT=", 9);
append_unescaped(packet, share->comment, strlen(share->comment));
}
if (share->connect_string.length)
{
packet->append(" CONNECTION=", 12);
append_unescaped(packet, share->connect_string.str, share->connect_string.length);
}
if (file->raid_type)
{
uint length;