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_1401_test.py

61 lines
1.2 KiB
Python
Raw Normal View History

2021-04-26 20:07:00 +02:00
#coding:utf-8
2022-01-20 17:32:14 +01:00
"""
ID: issue-1819
ISSUE: 1819
TITLE: Global temporary table instance may pick up not all indices
DESCRIPTION:
JIRA: CORE-1401
FBTEST: bugs.core_1401
2022-01-20 17:32:14 +01:00
"""
2021-04-26 20:07:00 +02:00
2022-01-20 17:32:14 +01:00
import pytest
from firebird.qa import *
2021-04-26 20:07:00 +02:00
2022-01-20 17:32:14 +01:00
db = db_factory()
2021-04-26 20:07:00 +02:00
2022-01-20 17:32:14 +01:00
test_script = """create global temporary table t (f1 int, f2 int, f3 int);
2021-04-26 20:07:00 +02:00
create index idx1 on t (f1);
create index idx2 on t (f2);
create index idx3 on t (f3);
drop index idx2;
set plan on;
insert into t values (1, 1, 1);
select * from t where f1 = 1;
select * from t where f2 = 1;
select * from t where f3 = 1;
"""
2022-01-20 17:32:14 +01:00
act = isql_act('db', test_script)
2021-04-26 20:07:00 +02:00
2022-01-20 17:32:14 +01:00
expected_stdout = """
2021-04-26 20:07:00 +02:00
PLAN (T INDEX (IDX1))
F1 F2 F3
============ ============ ============
1 1 1
PLAN (T NATURAL)
F1 F2 F3
============ ============ ============
1 1 1
PLAN (T INDEX (IDX3))
F1 F2 F3
============ ============ ============
1 1 1
"""
2022-01-20 17:32:14 +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