diff options
author | Sergey Glukhov <Sergey.Glukhov@sun.com> | 2009-05-19 11:48:04 +0500 |
---|---|---|
committer | Sergey Glukhov <Sergey.Glukhov@sun.com> | 2009-05-19 11:48:04 +0500 |
commit | 6b57f95cb22cdea3443af2d624333ce2d946b963 (patch) | |
tree | d2419d4559599e25bc022d8c2f0cf72f5aaddbc5 /storage/innobase | |
parent | fb3e433d4e89b8b111444a1460ea2f4cacadbb9b (diff) | |
parent | 0a892c46e0f53cb1404bea696da6adecb95d39cb (diff) | |
download | mariadb-git-6b57f95cb22cdea3443af2d624333ce2d946b963.tar.gz |
5.0-bugteam->5.1-bugteam merge
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 c7a57d6a2b8..7180f8b2bed 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 == '#' |