[Commits] 1f8328fed07: fix typo noticed by windows compiler
revision-id: 1f8328fed076c9189792a335a1cc38ad7ad3a042 (mariadb-10.3.6-40-g1f8328fed07) parent(s): 7e704a2308e25953b5f8fb154eb325df3e25c2ec author: Oleksandr Byelkin committer: Oleksandr Byelkin timestamp: 2018-07-05 17:58:11 +0200 message: fix typo noticed by windows compiler --- sql/sql_parse.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index 0509fdbfb4e..95456c03554 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -10078,7 +10078,8 @@ bool parse_sql(THD *thd, Parser_state *parser_state, ((thd->variables.sql_mode & MODE_ORACLE) ? ORAparse(thd) : MYSQLparse(thd)) != 0; - DBUG_ASSERT(opt_bootstrap | mysql_parse_status || thd->lex->select_stack_top == 0); + DBUG_ASSERT(opt_bootstrap || mysql_parse_status || + thd->lex->select_stack_top == 0); thd->lex->current_select= thd->lex->first_select_lex(); /*
participants (1)
-
Oleksandr Byelkin