diff options
author | Satya B <satya.bn@sun.com> | 2009-05-19 14:01:29 +0530 |
---|---|---|
committer | Satya B <satya.bn@sun.com> | 2009-05-19 14:01:29 +0530 |
commit | ab99c2347b965b42160cd3c4b2937915c4df5bde (patch) | |
tree | 7c2c83281a6cc3a2670d2228b200b02d1659aa82 /storage/innobase | |
parent | 07b93588609d8b5c2db72b61e61a8a2a70281175 (diff) | |
parent | 6b57f95cb22cdea3443af2d624333ce2d946b963 (diff) | |
download | mariadb-git-ab99c2347b965b42160cd3c4b2937915c4df5bde.tar.gz |
merge to 5.1-bugteam tree
Diffstat (limited to 'storage/innobase')
-rw-r--r-- | storage/innobase/dict/dict0dict.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innobase/dict/dict0dict.c b/storage/innobase/dict/dict0dict.c index 0fec2443836..8cb196bf983 100644 --- a/storage/innobase/dict/dict0dict.c +++ b/storage/innobase/dict/dict0dict.c @@ -2616,7 +2616,7 @@ scan_more: } else if (quote) { /* Within quotes: do not look for starting quotes or comments. */ - } else if (*sptr == '"' || *sptr == '`') { + } else if (*sptr == '"' || *sptr == '`' || *sptr == '\'') { /* Starting quote: remember the quote character. */ quote = *sptr; } else if (*sptr == '#' |