1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-31 22:22:30 +03:00

Fix 'n' concurrent prepared executions

sql/sql_prepare.cc:
  Fix 'n' concurrent executions
libmysql/errmsg.c:
  Fix the missing semicolon for errors
libmysql/libmysql.c:
  Fix the result meta info for non-SELECT statements
This commit is contained in:
unknown
2003-01-30 00:38:11 -08:00
parent a8abb0471e
commit 7d0d2d4f85
4 changed files with 48 additions and 21 deletions

View File

@@ -327,6 +327,7 @@ public:
typedef struct st_prep_stmt
{
THD *thd;
LEX lex;
Item_param **param;
Item *free_list;
MEM_ROOT mem_root;