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

69 lines
1.8 KiB
Python
Raw Normal View History

2021-04-26 20:07:00 +02:00
#coding:utf-8
#
# id: bugs.core_2796
# title: DB_KEY is always zero for external tables
2021-10-21 19:29:23 +02:00
# decription:
#
2021-04-26 20:07:00 +02:00
# tracker_id: CORE-2796
# min_versions: ['3.0']
# versions: 3.0
# qmid: None
2021-10-21 19:29:23 +02:00
# !!! IMPORTANT !!!
# This test requires config ExternalFileAccess = Full
2021-04-26 20:07:00 +02:00
import pytest
from firebird.qa import db_factory, isql_act, Action
# version: 3.0
# resources: None
substitutions_1 = []
init_script_1 = """"""
db_1 = db_factory(page_size=4096, sql_dialect=3, init=init_script_1)
test_script_1 = """
recreate table ext_test external file '$(DATABASE_LOCATION)c2796.dat' (col char(24), lf char(1));
set list on;
set term ^;
execute block returns (ms_diff bigint)
as
declare dbkey char(8) character set octets;
declare v_dts1 timestamp;
begin
v_dts1=cast('now' as timestamp);
insert into ext_test values( :v_dts1-rand()*100, ascii_char(10));
insert into ext_test values( :v_dts1-rand()*100, ascii_char(10));
insert into ext_test values( :v_dts1-rand()*100, ascii_char(10));
insert into ext_test values( :v_dts1, ascii_char(10));
insert into ext_test values( :v_dts1-rand()*100, ascii_char(10));
2021-10-21 19:29:23 +02:00
2021-04-26 20:07:00 +02:00
select rdb$db_key from ext_test order by col desc rows 1 into :dbkey;
2021-10-21 19:29:23 +02:00
2021-04-26 20:07:00 +02:00
for
select datediff(millisecond from cast(col as timestamp) to :v_dts1)
from ext_test
where rdb$db_key = :dbkey
into ms_diff
do
suspend;
2021-10-21 19:29:23 +02:00
end
2021-04-26 20:07:00 +02:00
^
set term ;^
"""
act_1 = isql_act('db_1', test_script_1, substitutions=substitutions_1)
expected_stdout_1 = """
MS_DIFF 0
"""
@pytest.mark.version('>=3.0')
2021-04-28 12:42:11 +02:00
def test_1(act_1: Action):
2021-04-26 20:07:00 +02:00
act_1.expected_stdout = expected_stdout_1
act_1.execute()
assert act_1.clean_expected_stdout == act_1.clean_stdout