diff options
author | kostja@vajra.(none) <> | 2007-05-11 17:26:12 +0400 |
---|---|---|
committer | kostja@vajra.(none) <> | 2007-05-11 17:26:12 +0400 |
commit | ad609d6e808e1d29d94199269a7997382a3c3955 (patch) | |
tree | 0457e0d1c6d9ce58028bbfc280e7d21426a8b771 /sql/sql_yacc.yy | |
parent | 0d6e93e0c1c6e8a7827650f00448237a6e7cdfa1 (diff) | |
download | mariadb-git-ad609d6e808e1d29d94199269a7997382a3c3955.tar.gz |
Cleanup: now that we have Lex_input_stream, finish the transition
by moving yet another relevant flag to it from struct LEX.
Diffstat (limited to 'sql/sql_yacc.yy')
-rw-r--r-- | sql/sql_yacc.yy | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy index 390a991c7b6..847d4df6935 100644 --- a/sql/sql_yacc.yy +++ b/sql/sql_yacc.yy @@ -1276,11 +1276,6 @@ deallocate: { THD *thd=YYTHD; LEX *lex= thd->lex; - if (lex->stmt_prepare_mode) - { - my_parse_error(ER(ER_SYNTAX_ERROR)); - MYSQL_YYABORT; - } lex->sql_command= SQLCOM_DEALLOCATE_PREPARE; lex->prepared_stmt_name= $3; }; @@ -1296,11 +1291,6 @@ prepare: { THD *thd=YYTHD; LEX *lex= thd->lex; - if (lex->stmt_prepare_mode) - { - my_parse_error(ER(ER_SYNTAX_ERROR)); - MYSQL_YYABORT; - } lex->sql_command= SQLCOM_PREPARE; lex->prepared_stmt_name= $2; }; @@ -1326,11 +1316,6 @@ execute: { THD *thd=YYTHD; LEX *lex= thd->lex; - if (lex->stmt_prepare_mode) - { - my_parse_error(ER(ER_SYNTAX_ERROR)); - MYSQL_YYABORT; - } lex->sql_command= SQLCOM_EXECUTE; lex->prepared_stmt_name= $2; } |