summaryrefslogtreecommitdiff
path: root/sql/sql_lex.cc
diff options
context:
space:
mode:
authormonty@mysql.com <>2005-07-27 13:45:06 +0300
committermonty@mysql.com <>2005-07-27 13:45:06 +0300
commitaf6863e7d03134027cece84774f4921ea559faa0 (patch)
treea15ad68654ef7b2beb74a7b30aa15162e29412a2 /sql/sql_lex.cc
parent24d45c5c305b0137caa50ff9b58da195c6f02f90 (diff)
downloadmariadb-git-af6863e7d03134027cece84774f4921ea559faa0.tar.gz
Moved test for 'show full processlist' to not_embedded_server.test becasue it could fail on a slow computer where previous connections has not yet disconnected
Diffstat (limited to 'sql/sql_lex.cc')
-rw-r--r--sql/sql_lex.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_lex.cc b/sql/sql_lex.cc
index 42e3b678c09..8636b6542fc 100644
--- a/sql/sql_lex.cc
+++ b/sql/sql_lex.cc
@@ -561,7 +561,7 @@ int yylex(void *arg, void *yythd)
grammatically correct.
*/
else if (c == '?' && ((THD*) yythd)->command == COM_PREPARE &&
- !ident_map[cs, yyPeek()])
+ !ident_map[yyPeek()])
return(PARAM_MARKER);
return((int) c);