summaryrefslogtreecommitdiff
path: root/client/mysqltest.c
diff options
context:
space:
mode:
Diffstat (limited to 'client/mysqltest.c')
-rw-r--r--client/mysqltest.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c
index 1345f569593..1361dc843ed 100644
--- a/client/mysqltest.c
+++ b/client/mysqltest.c
@@ -1366,6 +1366,10 @@ int read_line(char* buf, int size)
*p = 0;
return 0;
}
+ else if (c == '\'')
+ state = R_Q1;
+ else if (c == '"')
+ state = R_Q2;
else
state = R_NORMAL;
break;