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

Fixed compiler warnings from optimized builds

This commit is contained in:
Michael Widenius
2019-01-15 17:05:42 +02:00
parent ce06990056
commit 9990027f87
7 changed files with 10 additions and 10 deletions

View File

@ -3438,12 +3438,14 @@ public:
void pop_context()
{
DBUG_ENTER("LEX::pop_context");
#ifndef DBUG_OFF
Name_resolution_context *context= context_stack.pop();
DBUG_PRINT("info", ("Pop context %p Select: %p (%d)",
context, context->select_lex,
(context->select_lex ?
context->select_lex->select_number:
0)));
#endif
DBUG_VOID_RETURN;
}