1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Using Schema_specification_st instead of HA_CREATE_INFO in a few places

where the former is enough.
This commit is contained in:
Alexander Barkov
2014-12-10 16:46:21 +04:00
parent 822eb6ca3d
commit 0b936cda07
4 changed files with 7 additions and 13 deletions

View File

@ -1195,7 +1195,7 @@ bool mysqld_show_create_db(THD *thd, LEX_STRING *dbname,
Security_context *sctx= thd->security_ctx;
uint db_access;
#endif
HA_CREATE_INFO create;
Schema_specification_st create;
Protocol *protocol=thd->protocol;
DBUG_ENTER("mysql_show_create_db");
@ -4679,7 +4679,7 @@ int fill_schema_schemata(THD *thd, TABLE_LIST *tables, COND *cond)
LOOKUP_FIELD_VALUES lookup_field_vals;
Dynamic_array<LEX_STRING*> db_names;
HA_CREATE_INFO create;
Schema_specification_st create;
TABLE *table= tables->table;
#ifndef NO_EMBEDDED_ACCESS_CHECKS
Security_context *sctx= thd->security_ctx;