1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Bug#43461: invalid comparison with string literal in default.c

Don't compare string literals as it results in unspecified behavior.
This commit is contained in:
Davi Arnaut
2009-03-19 17:20:15 -03:00
parent 5d13d4f34e
commit 2417701e46
3 changed files with 5 additions and 4 deletions

View File

@@ -1758,7 +1758,7 @@ void Query_arena::set_query_arena(Query_arena *set)
void Query_arena::cleanup_stmt()
{
DBUG_ASSERT("Query_arena::cleanup_stmt()" == "not implemented");
DBUG_ASSERT(! "Query_arena::cleanup_stmt() not implemented");
}
/*