summaryrefslogtreecommitdiff
path: root/sql/sql_lex.cc
diff options
context:
space:
mode:
authorunknown <kent@mysql.com>2006-05-26 18:38:34 +0200
committerunknown <kent@mysql.com>2006-05-26 18:38:34 +0200
commit4784833f09dc631d4c76f5f3df57a7cb68d8f831 (patch)
tree0c8216f37f3bf5c5aefb0268ae9aef09d8634ab9 /sql/sql_lex.cc
parentbce6a702f3f7818d67a89c8cee8a05bd8ba69f33 (diff)
parent6355f74e4d35d457771fe45f8f5331a3174226a4 (diff)
downloadmariadb-git-4784833f09dc631d4c76f5f3df57a7cb68d8f831.tar.gz
Merge mysql.com:/data0/mysqldev/my/mysql-5.0.22-release
into mysql.com:/data0/mysqldev/my/mysql-5.0 sql/sql_lex.cc: Auto merged sql/sql_parse.cc: Auto merged tests/mysql_client_test.c: Auto merged
Diffstat (limited to 'sql/sql_lex.cc')
-rw-r--r--sql/sql_lex.cc31
1 files changed, 5 insertions, 26 deletions
diff --git a/sql/sql_lex.cc b/sql/sql_lex.cc
index c4c72910265..d8cd5601df5 100644
--- a/sql/sql_lex.cc
+++ b/sql/sql_lex.cc
@@ -310,18 +310,7 @@ static char *get_text(LEX *lex)
found_escape=1;
if (lex->ptr == lex->end_of_query)
return 0;
-#ifdef USE_MB
- int l;
- if (use_mb(cs) &&
- (l = my_ismbchar(cs,
- (const char *)lex->ptr,
- (const char *)lex->end_of_query))) {
- lex->ptr += l;
- continue;
- }
- else
-#endif
- yySkip();
+ yySkip();
}
else if (c == sep)
{
@@ -350,9 +339,6 @@ static char *get_text(LEX *lex)
{
uchar *to;
- /* Re-use found_escape for tracking state of escapes */
- found_escape= 0;
-
for (to=start ; str != end ; str++)
{
#ifdef USE_MB
@@ -366,8 +352,7 @@ static char *get_text(LEX *lex)
continue;
}
#endif
- if (!found_escape &&
- !(lex->thd->variables.sql_mode & MODE_NO_BACKSLASH_ESCAPES) &&
+ if (!(lex->thd->variables.sql_mode & MODE_NO_BACKSLASH_ESCAPES) &&
*str == '\\' && str+1 != end)
{
switch(*++str) {
@@ -394,20 +379,14 @@ static char *get_text(LEX *lex)
*to++= '\\'; // remember prefix for wildcard
/* Fall through */
default:
- found_escape= 1;
- str--;
+ *to++= *str;
break;
}
}
- else if (!found_escape && *str == sep)
- {
- found_escape= 1;
- }
+ else if (*str == sep)
+ *to++= *str++; // Two ' or "
else
- {
*to++ = *str;
- found_escape= 0;
- }
}
*to=0;
lex->yytoklen=(uint) (to-start);