1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00
Fix for save_in_field to take extra bool argumnet (4.0 merge compatibility)
This commit is contained in:
venu@myvenu.com
2002-12-06 23:39:11 -08:00
parent 7e312565c3
commit 9100688c17
6 changed files with 24 additions and 34 deletions

View File

@ -321,14 +321,14 @@ public:
typedef struct st_prep_stmt
{
THD *thd;
Item_param *param;
Item_param **param;
Item *free_list;
MEM_ROOT mem_root;
ulong stmt_id;
uint param_count;
uint last_errno;
char last_error[MYSQL_ERRMSG_SIZE];
bool error_in_prepare, long_data_used, param_inited;
bool error_in_prepare, long_data_used;
} PREP_STMT;