1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Bug fixed

null_string wasn't known in libmysqld/lib_sql.cc, that caused compiler's error
i put the declaration of the null_string in mysql_priv.h and renamed it
to my_null_string to reduce the probability of name's intersections
This commit is contained in:
hf@deer.(none)
2003-09-25 13:02:45 +05:00
parent 5077ea0e2d
commit 192fcb9cc6
3 changed files with 4 additions and 3 deletions

View File

@ -752,7 +752,7 @@ bool setup_params_data_withlog(st_prep_stmt *stmt)
if (*client_param->is_null)
{
param->maybe_null= param->null_value= 1;
res= &null_string;
res= &my_null_string;
}
else
{