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

Comment column in SHOW TABLE STATUS now reports that it can

contain NULL values (which is the case for a crashed .frm file).
This commit is contained in:
monty@narttu.mysql.fi
2003-02-26 09:52:19 +02:00
parent e6c575dacc
commit 20f7ea5c7a

View File

@@ -293,6 +293,7 @@ int mysqld_extend_show_tables(THD *thd,const char *db,const char *wild)
field_list.push_back(item=new Item_empty_string("Create_options",255));
item->maybe_null=1;
field_list.push_back(item=new Item_empty_string("Comment",80));
item->maybe_null=1;
if (send_fields(thd,field_list,1))
DBUG_RETURN(1);