1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00
This commit is contained in:
monty@work.mysql.com
2001-09-17 23:26:00 +02:00
38 changed files with 494 additions and 173 deletions

View File

@ -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;