8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 15:23:02 +01:00
This commit is contained in:
robocop 2004-08-27 05:13:47 +00:00
parent 1ade23282c
commit 5eb042a638

View File

@ -3842,16 +3842,24 @@ static processing_state get_statement(TEXT* statement,
case SINGLE_QUOTE:
switch (state)
{
case normal: state = in_single_quoted_string; break;
case in_single_quoted_string: state = normal; break;
case normal:
state = in_single_quoted_string;
break;
case in_single_quoted_string:
state = normal;
break;
}
break;
case DBL_QUOTE:
switch (state)
{
case normal: state = in_double_quoted_string; break;
case in_double_quoted_string: state = normal; break;
case normal:
state = in_double_quoted_string;
break;
case in_double_quoted_string:
state = normal;
break;
}
break;