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

50 lines
1.3 KiB
Python
Raw Normal View History

2021-04-26 20:07:00 +02:00
#coding:utf-8
2022-01-23 20:41:55 +01:00
"""
ID: issue-4633
ISSUE: 4633
TITLE: DateAdd(): change input <amount> argument from INT to BIGINT
DESCRIPTION:
JIRA: CORE-4310
FBTEST: bugs.core_4310
2022-01-23 20:41:55 +01:00
"""
2021-04-26 20:07:00 +02:00
2022-01-23 20:41:55 +01:00
import pytest
from firebird.qa import *
2021-04-26 20:07:00 +02:00
2022-01-23 20:41:55 +01:00
db = db_factory()
2021-04-26 20:07:00 +02:00
2022-01-23 20:41:55 +01:00
test_script = """
2021-04-26 20:07:00 +02:00
set sqlda_display on;
set planonly;
select dateadd( ? millisecond to ?) from rdb$database;
set planonly;
set plan off;
set sqlda_display off;
set list on;
2022-01-23 20:41:55 +01:00
select
2021-04-26 20:07:00 +02:00
dateadd( 315537897599998 millisecond to timestamp '01.01.0001 00:00:00.001' ) dts1
,dateadd( -315537897599998 millisecond to timestamp '31.12.9999 23:59:59.999' ) dts2
from rdb$database;
2021-12-22 20:23:11 +01:00
"""
2021-04-26 20:07:00 +02:00
2022-01-23 20:41:55 +01:00
act = isql_act('db', test_script,
substitutions=[('^((?!sqltype|DTS1|DTS2|SQLSTATE|exceed|range|valid).)*$', ''),
('[ ]+', ' ')])
2021-04-26 20:07:00 +02:00
2022-01-23 20:41:55 +01:00
expected_stdout = """
2021-04-26 20:07:00 +02:00
01: sqltype: 580 INT64 scale: -1 subtype: 0 len: 8
02: sqltype: 510 TIMESTAMP scale: 0 subtype: 0 len: 8
01: sqltype: 510 TIMESTAMP scale: 0 subtype: 0 len: 8
DTS1 9999-12-31 23:59:59.9990
DTS2 0001-01-01 00:00:00.0010
2021-12-22 20:23:11 +01:00
"""
2021-04-26 20:07:00 +02:00
@pytest.mark.version('>=3.0')
2022-01-23 20:41:55 +01:00
def test_1(act: Action):
act.expected_stdout = expected_stdout
act.execute()
assert act.clean_stdout == act.clean_expected_stdout
2021-04-26 20:07:00 +02:00