mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Fix for bug #8941: garbage MAX_ROWS=# from SHOW CREATE TABLE INFORMATION_SCHEMA.*
-skip the print of 'MAX_ROWS=#' for 'SHOW CRETAE TABLE' with information schema tables mysql-test/r/information_schema.result: Fix for bug #8941: garbage MAX_ROWS=# from SHOW CREATE TABLE INFORMATION_SCHEMA.* sql/sql_show.cc: Fix for bug #8941: garbage MAX_ROWS=# from SHOW CREATE TABLE INFORMATION_SCHEMA.*
This commit is contained in:
@ -978,7 +978,7 @@ store_create_info(THD *thd, TABLE_LIST *table_list, String *packet)
|
||||
packet->append(buff, (uint) (end- buff));
|
||||
}
|
||||
|
||||
if (share->max_rows)
|
||||
if (share->max_rows && !table_list->schema_table)
|
||||
{
|
||||
packet->append(" MAX_ROWS=", 10);
|
||||
end= longlong10_to_str(share->max_rows, buff, 10);
|
||||
|
Reference in New Issue
Block a user