summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2006-03-06 18:26:39 +0100
committerunknown <serg@serg.mylan>2006-03-06 18:26:39 +0100
commit301921b855404b9204197312489a3647abb6059c (patch)
tree6220a39843c5b1809aefa1be4e34376fb612c418
parent3e6fa4fc4b139d8b1d84383dfdd2e56829c21401 (diff)
downloadmariadb-git-301921b855404b9204197312489a3647abb6059c.tar.gz
kill (subquery) - three years old bugfix that never worked
-rw-r--r--mysql-test/r/kill.result2
-rw-r--r--mysql-test/t/kill.test3
-rw-r--r--sql/sql_yacc.yy17
3 files changed, 12 insertions, 10 deletions
diff --git a/mysql-test/r/kill.result b/mysql-test/r/kill.result
index ba9ba2833f6..7e38311a556 100644
--- a/mysql-test/r/kill.result
+++ b/mysql-test/r/kill.result
@@ -17,3 +17,5 @@ select 4;
4
4
drop table t1;
+kill (select count(*) from mysql.user);
+ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'select count(*) from mysql.user)' at line 1
diff --git a/mysql-test/t/kill.test b/mysql-test/t/kill.test
index aada8dd2ef3..e9136ce49b4 100644
--- a/mysql-test/t/kill.test
+++ b/mysql-test/t/kill.test
@@ -40,4 +40,7 @@ connection con2;
select 4;
drop table t1;
+--error 1064
+kill (select count(*) from mysql.user);
+
# End of 4.1 tests
diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy
index c99abc7d349..05d95b57abb 100644
--- a/sql/sql_yacc.yy
+++ b/sql/sql_yacc.yy
@@ -3564,9 +3564,8 @@ select_derived2:
{
LEX *lex= Lex;
lex->derived_tables= 1;
- if (((int)lex->sql_command >= (int)SQLCOM_HA_OPEN &&
- lex->sql_command <= (int)SQLCOM_HA_READ) ||
- lex->sql_command == (int)SQLCOM_KILL)
+ if (lex->sql_command == (int)SQLCOM_HA_READ ||
+ lex->sql_command == (int)SQLCOM_KILL)
{
yyerror(ER(ER_SYNTAX_ERROR));
YYABORT;
@@ -4739,16 +4738,15 @@ purge_option:
/* kill threads */
kill:
- KILL_SYM expr
+ KILL_SYM { Lex->sql_command= SQLCOM_KILL; } expr
{
LEX *lex=Lex;
- if ($2->fix_fields(lex->thd, 0, &$2) || $2->check_cols(1))
+ if ($3->fix_fields(lex->thd, 0, &$3) || $3->check_cols(1))
{
send_error(lex->thd, ER_SET_CONSTANTS_ONLY);
YYABORT;
}
- lex->sql_command=SQLCOM_KILL;
- lex->thread_id= (ulong) $2->val_int();
+ lex->thread_id= (ulong) $3->val_int();
};
/* change database */
@@ -6162,9 +6160,8 @@ subselect_start:
'(' SELECT_SYM
{
LEX *lex=Lex;
- if (((int)lex->sql_command >= (int)SQLCOM_HA_OPEN &&
- lex->sql_command <= (int)SQLCOM_HA_READ) ||
- lex->sql_command == (int)SQLCOM_KILL)
+ if (lex->sql_command == (int)SQLCOM_HA_READ ||
+ lex->sql_command == (int)SQLCOM_KILL)
{
yyerror(ER(ER_SYNTAX_ERROR));
YYABORT;