6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-23 14:03:06 +01:00
firebird-qa/tests/bugs/core_4321_test.py

70 lines
1.8 KiB
Python
Raw Normal View History

2021-04-26 20:07:00 +02:00
#coding:utf-8
2022-01-23 20:41:55 +01:00
"""
ID: issue-4644
ISSUE: 4644
TITLE: Regression: ISQL does not destroy the SQL statement
DESCRIPTION:
JIRA: CORE-4321
FBTEST: bugs.core_4321
2022-01-23 20:41:55 +01:00
"""
2021-04-26 20:07:00 +02:00
2022-01-23 20:41:55 +01:00
import pytest
from firebird.qa import *
2021-04-26 20:07:00 +02:00
2022-01-23 20:41:55 +01:00
db = db_factory()
2021-04-26 20:07:00 +02:00
2022-01-23 20:41:55 +01:00
test_script = """
2021-04-26 20:07:00 +02:00
-- NB: 2.1.7 FAILED, output contains '4' for select count(*) ...
set list on
select 1 x from rdb$database;
select 1 x from rdb$database;
select 1 x from rdb$database;
select 1 x from rdb$database;
2022-01-23 20:41:55 +01:00
select count(*) c from mon$statements s
2021-04-26 20:07:00 +02:00
where s.mon$sql_text containing 'select 1 x' -- 08-may-2017: need for 4.0 Classic! Currently there is also query with RDB$AUTH_MAPPING data in mon$statements
;
commit;
2022-01-23 20:41:55 +01:00
select count(*) c from mon$statements s
2021-04-26 20:07:00 +02:00
where s.mon$sql_text containing 'select 1 x'
;
2022-01-23 20:41:55 +01:00
2021-04-26 20:07:00 +02:00
select 1 x from rdb$database;
select 1 x from rdb$database;
select 1 x from rdb$database;
select 1 x from rdb$database;
2022-01-23 20:41:55 +01:00
select count(*) c from mon$statements s
2021-04-26 20:07:00 +02:00
where s.mon$sql_text containing 'select 1 x'
;
commit;
2022-01-23 20:41:55 +01:00
select count(*) c from mon$statements s
2021-04-26 20:07:00 +02:00
where s.mon$sql_text containing 'select 1 x'
;
2021-12-22 20:23:11 +01:00
"""
2021-04-26 20:07:00 +02:00
2022-01-23 20:41:55 +01:00
act = isql_act('db', test_script)
2021-04-26 20:07:00 +02:00
2022-01-23 20:41:55 +01:00
expected_stdout = """
2021-04-26 20:07:00 +02:00
X 1
X 1
X 1
C 1
C 1
X 1
X 1
X 1
X 1
C 1
C 1
2021-12-22 20:23:11 +01:00
"""
2021-04-26 20:07:00 +02:00
2022-01-23 20:41:55 +01:00
@pytest.mark.version('>=3')
def test_1(act: Action):
act.expected_stdout = expected_stdout
act.execute()
assert act.clean_stdout == act.clean_expected_stdout
2021-04-26 20:07:00 +02:00