mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 21:43:06 +01:00
72 lines
2.1 KiB
Python
72 lines
2.1 KiB
Python
#coding:utf-8
|
|
#
|
|
# id: bugs.core_1752
|
|
# title: Results of a join with different collations depend on the execution plan
|
|
# decription:
|
|
# tracker_id: CORE-1752
|
|
# min_versions: ['2.5.1']
|
|
# versions: 2.5.1
|
|
# qmid: None
|
|
|
|
import pytest
|
|
from firebird.qa import db_factory, isql_act, Action
|
|
|
|
# version: 2.5.1
|
|
# resources: None
|
|
|
|
substitutions_1 = []
|
|
|
|
init_script_1 = """"""
|
|
|
|
db_1 = db_factory(from_backup='core1752.fbk', init=init_script_1)
|
|
|
|
test_script_1 = """
|
|
select a.zeitstempel, b.artikelnr
|
|
from t1 a
|
|
join t2 b on b.artikelnr = a.artikelnr --collate de_de
|
|
order by 1,2
|
|
;
|
|
|
|
select a.zeitstempel, b.artikelnr
|
|
from t1 a
|
|
join t2 b on b.artikelnr = a.artikelnr collate de_de
|
|
order by 1,2
|
|
;
|
|
"""
|
|
|
|
act_1 = isql_act('db_1', test_script_1, substitutions=substitutions_1)
|
|
|
|
expected_stdout_1 = """
|
|
ZEITSTEMPEL ARTIKELNR
|
|
================================ ===============
|
|
11997831915bde60630658f7ed147baa 10045
|
|
1199797956ebe80ac53a54ebd164c707 9930
|
|
1199798232de53f704854945c17be47e 10005
|
|
1199799582060cc10385b2eafcdfd567 10045
|
|
1199799582060cc10385b2eafcdfd567 10056
|
|
119981802446bba36e437bf0181bb41c 9761
|
|
119981811832e8ec4bb875a5d54ca202 9510
|
|
1199823157b3f2d13b93184ab1e3b29d 9703
|
|
1199827557240a59c5148b42a9374fc9 9920
|
|
|
|
|
|
ZEITSTEMPEL ARTIKELNR
|
|
================================ ===============
|
|
11997831915bde60630658f7ed147baa 10045
|
|
1199797956ebe80ac53a54ebd164c707 9930
|
|
1199798232de53f704854945c17be47e 10005
|
|
1199799582060cc10385b2eafcdfd567 10045
|
|
1199799582060cc10385b2eafcdfd567 10056
|
|
119981802446bba36e437bf0181bb41c 9761
|
|
119981811832e8ec4bb875a5d54ca202 9510
|
|
1199823157b3f2d13b93184ab1e3b29d 9703
|
|
1199827557240a59c5148b42a9374fc9 9920
|
|
"""
|
|
|
|
@pytest.mark.version('>=2.5.1')
|
|
def test_1(act_1: Action):
|
|
act_1.expected_stdout = expected_stdout_1
|
|
act_1.execute()
|
|
assert act_1.clean_expected_stdout == act_1.clean_stdout
|
|
|