diff options
author | konstantin@mysql.com <> | 2005-06-17 23:26:25 +0400 |
---|---|---|
committer | konstantin@mysql.com <> | 2005-06-17 23:26:25 +0400 |
commit | b3d977df1071ab18440ae995bbcf974054abe209 (patch) | |
tree | c717e85867b447ea03e767d03e54e0085e7ecbee /libmysqld | |
parent | c78b19768d9247ef5b1fd1cd3f15707a62df3a26 (diff) | |
download | mariadb-git-b3d977df1071ab18440ae995bbcf974054abe209.tar.gz |
Rename all prepared statements COM_ commands to prefix with COM_STMT_
Diffstat (limited to 'libmysqld')
-rw-r--r-- | libmysqld/lib_sql.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysqld/lib_sql.cc b/libmysqld/lib_sql.cc index 74a1c8c7922..dd4ba939ebe 100644 --- a/libmysqld/lib_sql.cc +++ b/libmysqld/lib_sql.cc @@ -220,7 +220,7 @@ static int emb_stmt_execute(MYSQL_STMT *stmt) THD *thd= (THD*)stmt->mysql->thd; thd->client_param_count= stmt->param_count; thd->client_params= stmt->params; - if (emb_advanced_command(stmt->mysql, COM_EXECUTE,0,0, + if (emb_advanced_command(stmt->mysql, COM_STMT_EXECUTE,0,0, header, sizeof(header), 1) || emb_mysql_read_query_result(stmt->mysql)) { |