6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-22 21:43:06 +01:00
firebird-qa/tests/bugs/core_5070_test.py

66 lines
1.3 KiB
Python
Raw Normal View History

2021-04-26 20:07:00 +02:00
#coding:utf-8
2022-01-25 22:55:48 +01:00
"""
ID: issue-5357
ISSUE: 5357
TITLE: Compound index cannot be used for filtering in some ORDER/GROUP BY queries
DESCRIPTION:
JIRA: CORE-5070
FBTEST: bugs.core_5070
2022-01-25 22:55:48 +01:00
"""
2021-04-26 20:07:00 +02:00
2022-01-25 22:55:48 +01:00
import pytest
from firebird.qa import *
2021-04-26 20:07:00 +02:00
2022-01-25 22:55:48 +01:00
db = db_factory()
2021-04-26 20:07:00 +02:00
2022-01-25 22:55:48 +01:00
test_script = """
2021-04-26 20:07:00 +02:00
recreate table test1 (
ia integer not null,
2022-01-25 22:55:48 +01:00
id integer not null,
it integer not null,
dt date not null,
2021-04-26 20:07:00 +02:00
constraint test1_pk_ia_id primary key (ia,id)
);
set plan on;
set explain on;
2022-01-25 22:55:48 +01:00
select *
from test1
where
ia=1 and dt='01/01/2015' and it=1
2021-04-26 20:07:00 +02:00
order by id
2022-01-25 22:55:48 +01:00
;
2021-04-26 20:07:00 +02:00
2022-01-25 22:55:48 +01:00
select id
from test1
where
ia=1 and dt='01/01/2015' and it=1
group by id
2021-04-26 20:07:00 +02:00
;
2021-12-22 20:23:11 +01:00
"""
2021-04-26 20:07:00 +02:00
2022-01-25 22:55:48 +01:00
act = isql_act('db', test_script)
2021-04-26 20:07:00 +02:00
2022-01-25 22:55:48 +01:00
expected_stdout = """
2021-04-26 20:07:00 +02:00
Select Expression
-> Filter
-> Table "TEST1" Access By ID
-> Index "TEST1_PK_IA_ID" Range Scan (partial match: 1/2)
Select Expression
-> Aggregate
-> Filter
-> Table "TEST1" Access By ID
-> Index "TEST1_PK_IA_ID" Range Scan (partial match: 1/2)
2021-12-22 20:23:11 +01:00
"""
2021-04-26 20:07:00 +02:00
@pytest.mark.version('>=3.0')
2022-01-25 22:55:48 +01:00
def test_1(act: Action):
act.expected_stdout = expected_stdout
act.execute()
assert act.clean_stdout == act.clean_expected_stdout