mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 15:23:02 +01:00
Style
This commit is contained in:
parent
1ade23282c
commit
5eb042a638
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user