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

79 lines
2.5 KiB
Python
Raw Normal View History

2021-04-26 20:07:00 +02:00
#coding:utf-8
2022-01-26 21:10:46 +01:00
"""
ID: issue-5992
ISSUE: 5992
TITLE: Unclear error message when inserting value exceeding max of dec_fixed decimal
DESCRIPTION:
FB40SS, build 4.0.0.1008: OK, 1.641s.
Previously used:
create table extdecimal( dec34_34 decimal(34, 34) );
insert into extdecimal values(1);
-- and this raised following exception:
SQLCODE: -901
Decimal float invalid operation. An indeterminant error occurred during an operation.
numeric value is out of range
==================================
Since 30.10.2019 DDL was changed:
create table test(n numeric(38,38) );
insert into test values( 1.70141183460469231731687303715884105727 ); -- must PASS
insert into test values( 1.70141183460469231731687303715884105727001 ); -- must FAIL.
Explanation:
1.70141183460469231731687303715884105727 represents
2^127-1 // 170141183460469231731687303715884105728-1
2021-04-26 20:07:00 +02:00
2022-01-26 21:10:46 +01:00
Checked on: 4.0.0.1635
NOTES:
[25.06.2020]
4.0.0.2076: changed types in SQLDA from numeric to int128 // after discuss with Alex about CORE-6342.
JIRA: CORE-5726
FBTEST: bugs.core_5726
2022-01-26 21:10:46 +01:00
"""
2021-04-26 20:07:00 +02:00
2022-01-26 21:10:46 +01:00
import pytest
from firebird.qa import *
2021-04-26 20:07:00 +02:00
2022-01-26 21:10:46 +01:00
init_script = """
2021-04-26 20:07:00 +02:00
-- insert into test(n) values(
-- 1.70141183460469231731687303715);
-- insert into test(n) values(1.7014118346046923173168730371588410572700);
recreate table test (
id integer generated always as identity primary key,
n numeric(38,38)
);
commit;
2021-12-22 20:23:11 +01:00
"""
2021-04-26 20:07:00 +02:00
2022-01-26 21:10:46 +01:00
db = db_factory(sql_dialect=3, init=init_script)
2021-04-26 20:07:00 +02:00
2022-01-26 21:10:46 +01:00
test_script = """
2021-04-26 20:07:00 +02:00
set list on;
insert into test(n) values( 1.70141183460469231731687303715884105727 );
insert into test(n) values( 1.70141183460469231731687303715884105727001 );
set sqlda_display on;
select n as "max_precise_number" from test;
2021-12-22 20:23:11 +01:00
"""
2021-04-26 20:07:00 +02:00
2022-01-26 21:10:46 +01:00
act = isql_act('db', test_script, substitutions=[('^((?!(sqltype|max_precise_number)).)*$', ''),
('[ \t]+', ' '), ('.*alias.*', '')])
2021-04-26 20:07:00 +02:00
2022-01-26 21:10:46 +01:00
expected_stdout = """
2021-04-26 20:07:00 +02:00
01: sqltype: 32752 INT128 Nullable scale: -38 subtype: 1 len: 16
max_precise_number 1.70141183460469231731687303715884105727
2021-12-22 20:23:11 +01:00
"""
2022-01-26 21:10:46 +01:00
expected_stderr = """
2021-04-26 20:07:00 +02:00
Statement failed, SQLSTATE = 22003
arithmetic exception, numeric overflow, or string truncation
-numeric value is out of range
2021-12-22 20:23:11 +01:00
"""
2021-04-26 20:07:00 +02:00
@pytest.mark.version('>=4.0')
2022-01-26 21:10:46 +01:00
def test_1(act: Action):
act.expected_stdout = expected_stdout
act.expected_stderr = expected_stderr
act.execute()
assert (act.clean_stderr == act.clean_expected_stderr and
act.clean_stdout == act.clean_expected_stdout)