mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 21:43:06 +01:00
47 lines
1.1 KiB
Python
47 lines
1.1 KiB
Python
#coding:utf-8
|
|
|
|
"""
|
|
ID: issue-8033
|
|
ISSUE: https://github.com/FirebirdSQL/firebird/issues/8033
|
|
TITLE: Invalid result when string compared with indexed numeric(x,y) field where x > 18 and y != 0
|
|
NOTES:
|
|
[11.03.2024] pzotov.
|
|
Confirmed bug in 6.0.0.276.
|
|
Checked 6.0.0.278 -- all fine.
|
|
|
|
[13.03.2024] pzotov
|
|
Checked on 5.0.1.1358 (commt #b0c846ae) - reduced min_version to 5.0.1.
|
|
"""
|
|
|
|
import pytest
|
|
from firebird.qa import *
|
|
|
|
db = db_factory()
|
|
|
|
test_script = """
|
|
set list on;
|
|
recreate table mi8 (v numeric (30, 4));
|
|
insert into mi8 values(12.345);
|
|
commit;
|
|
create index i8 on mi8(v);
|
|
set count on;
|
|
select v as v1 from mi8 where v = 12.345;
|
|
select v as v2 from mi8 where v = '12.345';
|
|
"""
|
|
|
|
act = isql_act('db', test_script, substitutions = [('[ \t]+', ' ')])
|
|
|
|
expected_stdout = """
|
|
V1 12.3450
|
|
Records affected: 1
|
|
|
|
V2 12.3450
|
|
Records affected: 1
|
|
"""
|
|
|
|
@pytest.mark.version('>=5.0.1')
|
|
def test_1(act: Action):
|
|
act.expected_stdout = expected_stdout
|
|
act.execute(combine_output = True)
|
|
assert act.clean_stdout == act.clean_expected_stdout
|