1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

SHOW [FULL] COLUMNS

Added timeouts to replication tests to handle concurrent inserts
This commit is contained in:
monty@donna.mysql.com
2001-01-22 05:32:58 +02:00
parent 0f28f7a414
commit 2d1082308b
26 changed files with 81 additions and 43 deletions

View File

@ -397,7 +397,7 @@ list_fields(MYSQL *mysql,const char *db,const char *table,
mysql_error(mysql));
return 1;
}
end=strmov(strmov(query,"show columns from "),table);
end=strmov(strmov(query,"show /*!32332 FULL */ columns from "),table);
if (wild && wild[0])
strxmov(end," like '",wild,"'",NullS);
if (mysql_query(mysql,query) || !(result=mysql_store_result(mysql)))