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

73 lines
1.8 KiB
Python

#coding:utf-8
"""
ID: issue-5751
ISSUE: 5751
TITLE: Available indices are not used in some cases if ORDER BY expression is a filtered one
DESCRIPTION:
JIRA: CORE-5481
FBTEST: bugs.core_5481
"""
import pytest
from firebird.qa import *
db = db_factory()
test_script = """
recreate view v_test as select 1 x from rdb$database;
commit;
recreate table balances
(
balanceid bigint not null,
orgaccountid bigint not null,
balancedate date not null
);
recreate table org_accounts
(
orgaccountid bigint not null primary key
);
alter table balances add constraint pk_balances primary key (balanceid);
alter table balances add constraint fk_balances_orgaccounts foreign key (orgaccountid) references org_accounts (orgaccountid);
alter table balances add constraint balances_balancedate_orgaccount unique (orgaccountid, balancedate);
create descending index balances_balancedate_desc on balances (balancedate);
recreate view v_test as
select b.*
from balances b
where
orgaccountid=18 and
balancedate<='01.01.2017'
order by balancedate desc
rows 1
;
commit;
set plan on;
select * from v_test;
commit;
ALTER TABLE BALANCES DROP CONSTRAINT BALANCES_BALANCEDATE_ORGACCOUNT;
commit;
select * from v_test; -- plan here should remains the same!
commit;
"""
act = isql_act('db', test_script)
expected_stdout = """
PLAN (V_TEST B ORDER BALANCES_BALANCEDATE_DESC INDEX (FK_BALANCES_ORGACCOUNTS))
PLAN (V_TEST B ORDER BALANCES_BALANCEDATE_DESC INDEX (FK_BALANCES_ORGACCOUNTS))
"""
@pytest.mark.version('>=3.0.4')
def test_1(act: Action):
act.expected_stdout = expected_stdout
act.execute()
assert act.clean_stdout == act.clean_expected_stdout