mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 21:43:06 +01:00
56 lines
1.7 KiB
Python
56 lines
1.7 KiB
Python
#coding:utf-8
|
|
|
|
"""
|
|
ID: issue-1092
|
|
ISSUE: 1092
|
|
TITLE: Tricky index names can defeat the parsing logic when generating a human readable plan
|
|
DESCRIPTION:
|
|
JIRA: CORE-2508
|
|
FBTEST: bugs.core_2508
|
|
NOTES:
|
|
[06.09.2023]
|
|
Replaced query so that DIFFERENT indices are involved (because WHERE-expression refers to diff. columns).
|
|
This is needed in FB 4.x+ after:
|
|
https://github.com/FirebirdSQL/firebird/commit/0493422c9f729e27be0112ab60f77e753fabcb5b
|
|
("Better processing and optimization if IN <list> predicates (#7707)")
|
|
Old query that did use IN predicate no more applicable here: all occurences of the same index
|
|
that works for mining data are now "collapsed" to the single one, i.e.:
|
|
PLAN (<tabname> INDEX (<idxname>, <idxname>, <idxname>)) ==> PLAN (<tabname> INDEX (<idxname>)).
|
|
"""
|
|
|
|
import pytest
|
|
from firebird.qa import *
|
|
|
|
db = db_factory()
|
|
|
|
test_script = """
|
|
create sequence g;
|
|
create table t(a int, b int);
|
|
insert into t(a,b) select gen_id(g,1),gen_id(g,1) from rdb$types;
|
|
commit;
|
|
create index "abc(" on t(a);
|
|
create descending index "mod(" on t(b);
|
|
set planonly;
|
|
select * from t where a <= 33 and b >= 22;
|
|
|
|
-- On 2.5.9.27156 plan for that query was:
|
|
-- PLAN (T INDEX (abc(mod())
|
|
-- ^^^
|
|
-- |
|
|
-- +---- NO comma here!
|
|
-- Compare with 3.x:
|
|
-- PLAN (T INDEX (abc(, mod())
|
|
"""
|
|
|
|
act = isql_act('db', test_script)
|
|
|
|
expected_stdout = """
|
|
PLAN (T INDEX (abc(, mod())
|
|
"""
|
|
|
|
@pytest.mark.version('>=3.0')
|
|
def test_1(act: Action):
|
|
act.expected_stdout = expected_stdout
|
|
act.execute()
|
|
assert act.clean_stdout == act.clean_expected_stdout
|