summaryrefslogtreecommitdiff
path: root/sql/sql_show.cc
diff options
context:
space:
mode:
authorAlexey Botchkov <holyfoot@askmonty.org>2016-01-26 16:00:59 +0400
committerAlexey Botchkov <holyfoot@askmonty.org>2016-01-26 23:18:13 +0400
commitdf2695495188b0c3459eabb40c8e390f56cddb27 (patch)
treeb0262db29ac4475b5f9065e6a6294a702a894e27 /sql/sql_show.cc
parenta095c99301a0acac9b2db9b294f24a8753ebed48 (diff)
downloadmariadb-git-df2695495188b0c3459eabb40c8e390f56cddb27.tar.gz
MDEV-5273 Prepared statement doesn't return metadata after prepare.
The metadata creation part of the mysqld_shww_create separated to be used on the mysqld_stmt_prepare stage.
Diffstat (limited to 'sql/sql_show.cc')
-rw-r--r--sql/sql_show.cc90
1 files changed, 62 insertions, 28 deletions
diff --git a/sql/sql_show.cc b/sql/sql_show.cc
index dd7a71f15fa..b2bf5a9ffb0 100644
--- a/sql/sql_show.cc
+++ b/sql/sql_show.cc
@@ -1092,39 +1092,29 @@ public:
/*
- Return CREATE command for table or view
+ Return metadata for CREATE command for table or view
@param thd Thread handler
@param table_list Table / view
+ @param field_list resulting list of fields
+ @param buffer resulting CREATE statement
@return
@retval 0 OK
@retval 1 Error
- @notes
- table_list->db and table_list->table_name are kept unchanged to
- not cause problems with SP.
*/
bool
-mysqld_show_create(THD *thd, TABLE_LIST *table_list)
+mysqld_show_create_get_fields(THD *thd, TABLE_LIST *table_list,
+ List<Item> *field_list, String *buffer)
{
- Protocol *protocol= thd->protocol;
- char buff[2048];
- String buffer(buff, sizeof(buff), system_charset_info);
- List<Item> field_list;
bool error= TRUE;
MEM_ROOT *mem_root= thd->mem_root;
- DBUG_ENTER("mysqld_show_create");
+ DBUG_ENTER("mysqld_show_create_get_fields");
DBUG_PRINT("enter",("db: %s table: %s",table_list->db,
table_list->table_name));
- /*
- Metadata locks taken during SHOW CREATE should be released when
- the statmement completes as it is an information statement.
- */
- MDL_savepoint mdl_savepoint= thd->mdl_context.mdl_savepoint();
-
/* We want to preserve the tree for views. */
thd->lex->context_analysis_only|= CONTEXT_ANALYSIS_ONLY_VIEW;
@@ -1155,45 +1145,89 @@ mysqld_show_create(THD *thd, TABLE_LIST *table_list)
goto exit;
}
- buffer.length(0);
+ buffer->length(0);
if (table_list->view)
- buffer.set_charset(table_list->view_creation_ctx->get_client_cs());
+ buffer->set_charset(table_list->view_creation_ctx->get_client_cs());
if ((table_list->view ?
- show_create_view(thd, table_list, &buffer) :
- show_create_table(thd, table_list, &buffer, NULL, WITHOUT_DB_NAME)))
+ show_create_view(thd, table_list, buffer) :
+ show_create_table(thd, table_list, buffer, NULL, WITHOUT_DB_NAME)))
goto exit;
if (table_list->view)
{
- field_list.push_back(new (mem_root)
+ field_list->push_back(new (mem_root)
Item_empty_string(thd, "View", NAME_CHAR_LEN),
mem_root);
- field_list.push_back(new (mem_root)
+ field_list->push_back(new (mem_root)
Item_empty_string(thd, "Create View",
- MY_MAX(buffer.length(),1024)),
+ MY_MAX(buffer->length(),1024)),
mem_root);
- field_list.push_back(new (mem_root)
+ field_list->push_back(new (mem_root)
Item_empty_string(thd, "character_set_client",
MY_CS_NAME_SIZE),
mem_root);
- field_list.push_back(new (mem_root)
+ field_list->push_back(new (mem_root)
Item_empty_string(thd, "collation_connection",
MY_CS_NAME_SIZE),
mem_root);
}
else
{
- field_list.push_back(new (mem_root)
+ field_list->push_back(new (mem_root)
Item_empty_string(thd, "Table", NAME_CHAR_LEN),
mem_root);
// 1024 is for not to confuse old clients
- field_list.push_back(new (mem_root)
+ field_list->push_back(new (mem_root)
Item_empty_string(thd, "Create Table",
- MY_MAX(buffer.length(),1024)),
+ MY_MAX(buffer->length(),1024)),
mem_root);
}
+ error= FALSE;
+
+exit:
+ DBUG_RETURN(error);
+}
+
+
+/*
+ Return CREATE command for table or view
+
+ @param thd Thread handler
+ @param table_list Table / view
+
+ @return
+ @retval 0 OK
+ @retval 1 Error
+
+ @notes
+ table_list->db and table_list->table_name are kept unchanged to
+ not cause problems with SP.
+*/
+
+bool
+mysqld_show_create(THD *thd, TABLE_LIST *table_list)
+{
+ Protocol *protocol= thd->protocol;
+ char buff[2048];
+ String buffer(buff, sizeof(buff), system_charset_info);
+ List<Item> field_list;
+ bool error= TRUE;
+ MEM_ROOT *mem_root= thd->mem_root;
+ DBUG_ENTER("mysqld_show_create");
+ DBUG_PRINT("enter",("db: %s table: %s",table_list->db,
+ table_list->table_name));
+
+ /*
+ Metadata locks taken during SHOW CREATE should be released when
+ the statmement completes as it is an information statement.
+ */
+ MDL_savepoint mdl_savepoint= thd->mdl_context.mdl_savepoint();
+
+
+ if (mysqld_show_create_get_fields(thd, table_list, &field_list, &buffer))
+ goto exit;
if (protocol->send_result_set_metadata(&field_list,
Protocol::SEND_NUM_ROWS |