mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 13:33:07 +01:00
Added/Updated tests\bugs\core_6379_test.py: Writing code requires more care since 6.0.0.150: ISQL does not allow to specify THE SAME terminator twice
This commit is contained in:
parent
a312513cec
commit
27efde35d2
@ -25,6 +25,11 @@ DESCRIPTION:
|
|||||||
-send_packet/send
|
-send_packet/send
|
||||||
JIRA: CORE-6379
|
JIRA: CORE-6379
|
||||||
FBTEST: bugs.core_6379
|
FBTEST: bugs.core_6379
|
||||||
|
NOTES:
|
||||||
|
[25.11.2023] pzotov
|
||||||
|
Writing code requires more care since 6.0.0.150: ISQL does not allow to specify THE SAME terminator twice,
|
||||||
|
i.e.
|
||||||
|
set term @; select 1 from rdb$database @ set term @; - will not compile ("Unexpected end of command" raises).
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
@ -49,7 +54,7 @@ init_script = """
|
|||||||
i = i + 1 ;
|
i = i + 1 ;
|
||||||
end
|
end
|
||||||
end ^
|
end ^
|
||||||
set term ^ ;
|
set term ;^
|
||||||
commit ;
|
commit ;
|
||||||
|
|
||||||
delete from test order by id rows (cast(rdb$get_context('USER_SESSION', 'N_LIMIT') as int) - 13) ;
|
delete from test order by id rows (cast(rdb$get_context('USER_SESSION', 'N_LIMIT') as int) - 13) ;
|
||||||
|
Loading…
Reference in New Issue
Block a user