summaryrefslogtreecommitdiff
path: root/sql/sql_lex.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r--sql/sql_lex.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h
index 49ff46c2bf9..c22f95978a0 100644
--- a/sql/sql_lex.h
+++ b/sql/sql_lex.h
@@ -3439,13 +3439,16 @@ public:
{
DBUG_ENTER("LEX::pop_context");
#ifndef DBUG_OFF
- Name_resolution_context *context= context_stack.pop();
+ Name_resolution_context *context=
+#endif
+ 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;
}