6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-23 14:03:06 +01:00
firebird-qa/tests/bugs/core_4940_test.py

55 lines
1.2 KiB
Python

#coding:utf-8
"""
ID: issue-5231
ISSUE: 5231
TITLE: Add label about deterministic flag for stored function in SHOW and extract commands
DESCRIPTION:
JIRA: CORE-4940
FBTEST: bugs.core_4940
"""
import pytest
from firebird.qa import *
db = db_factory()
test_script = """
-- 1. Specify 'deterministic' flag - it should be reflected in SHOW command:
set term ^;
create or alter function fn_infinity returns bigint deterministic as
begin
return 9223372036854775807;
end
^
set term ;^
commit;
show function fn_infinity;
-- 2. Remove 'deterministic' flag - it also should be reflected in SHOW command:
set term ^;
alter function fn_infinity returns bigint as
begin
return 9223372036854775807;
end
^
set term ;^
commit;
show function fn_infinity;
"""
act = isql_act('db', test_script, substitutions=[('^((?!Deterministic|deterministic).)*$', '')])
expected_stdout = """
Deterministic function
"""
@pytest.mark.version('>=3.0')
def test_1(act: Action):
act.expected_stdout = expected_stdout
act.execute()
assert act.clean_stdout == act.clean_expected_stdout