1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

fix VC compile error

This commit is contained in:
reggie@fedora.(none)
2005-08-02 17:25:40 -05:00
parent 25e204debb
commit 3beab00b21

View File

@ -3008,7 +3008,7 @@ static bool store_trigger(THD *thd, TABLE *table, const char *db,
sys_var_thd_sql_mode::symbolic_mode_representation(thd, sys_var_thd_sql_mode::symbolic_mode_representation(thd,
sql_mode, sql_mode,
&sql_mode_len); &sql_mode_len);
table->field[17]->store(sql_mode_str, sql_mode_len, cs); table->field[17]->store((const char*)sql_mode_str, sql_mode_len, cs);
return schema_table_store_record(thd, table); return schema_table_store_record(thd, table);
} }