diff options
Diffstat (limited to 'sql/sql_prepare.cc')
-rw-r--r-- | sql/sql_prepare.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sql/sql_prepare.cc b/sql/sql_prepare.cc index 758054a6e48..7c9e4b27564 100644 --- a/sql/sql_prepare.cc +++ b/sql/sql_prepare.cc @@ -437,6 +437,7 @@ static bool setup_params_data(PREP_STMT *stmt) } /* + Validate the following information for INSERT statement: - field existance - fields count @@ -504,8 +505,9 @@ static bool mysql_test_upd_fields(PREP_STMT *stmt, TABLE_LIST *table_list, if (open_and_lock_tables(thd, table_list)) DBUG_RETURN(1); - if (setup_tables(table_list) || setup_fields(thd,table_list,fields,1,0,0) || - setup_conds(thd,table_list,&conds) || thd->net.report_error) + if (setup_tables(table_list) || + setup_fields(thd, 0, table_list, fields, 1, 0, 0) || + setup_conds(thd, table_list, &conds) || thd->net.report_error) DBUG_RETURN(1); /* |