mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
sql_select.cc:
my_message_sql does not tolerate a NullS argument (segfault) sql/sql_select.cc: my_message_sql does not tolerate a NullS argument (segfault)
This commit is contained in:
@ -238,7 +238,7 @@ bool handle_select(THD *thd, LEX *lex, select_result *result)
|
||||
/*
|
||||
If we have real error reported erly then this will be ignored
|
||||
*/
|
||||
result->send_error(ER_UNKNOWN_ERROR, NullS);
|
||||
result->send_error(ER_UNKNOWN_ERROR, ER(ER_UNKNOWN_ERROR));
|
||||
result->abort();
|
||||
}
|
||||
DBUG_RETURN(res);
|
||||
|
Reference in New Issue
Block a user