mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 13:33:07 +01:00
Added/Updated tests\bugs\core_0190_test.py: Checked on 3.0.11.33665, 4.0.3.2904, 5.0.0.970
This commit is contained in:
parent
16af5f2e5d
commit
5ae860dbb1
49
tests/bugs/core_0190_test.py
Normal file
49
tests/bugs/core_0190_test.py
Normal file
@ -0,0 +1,49 @@
|
||||
#coding:utf-8
|
||||
|
||||
"""
|
||||
ID: issue-517
|
||||
ISSUE: https://github.com/FirebirdSQL/firebird/issues/517
|
||||
TITLE: trigger with except-s on view with union
|
||||
NOTES:
|
||||
Test should be added during initial migration from fbtest but did not, the reason is unknown.
|
||||
Noted by Anton Zuev: https://github.com/FirebirdSQL/firebird-qa/pull/5
|
||||
Checked on 3.0.11.33665, 4.0.3.2904, 5.0.0.970
|
||||
"""
|
||||
|
||||
import pytest
|
||||
from firebird.qa import *
|
||||
|
||||
db = db_factory()
|
||||
|
||||
test_script = """
|
||||
create table a (id integer);
|
||||
|
||||
create view v1 (vid) as
|
||||
select id from a
|
||||
union all
|
||||
select id from a;
|
||||
|
||||
create exception exa 'foo!..';
|
||||
create exception exb 'bar!..';
|
||||
commit;
|
||||
|
||||
set term ^;
|
||||
create trigger tv1 for v1 active before update as
|
||||
begin
|
||||
if (new.vid = 0) then
|
||||
exception exa;
|
||||
else
|
||||
exception exb;
|
||||
end
|
||||
^
|
||||
set term ;^
|
||||
commit;
|
||||
"""
|
||||
|
||||
act = isql_act('db', test_script)
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
def test_1(act: Action):
|
||||
act.expected_stdout = ''
|
||||
act.execute(combine_output = True)
|
||||
assert act.clean_stdout == act.clean_expected_stdout
|
Loading…
Reference in New Issue
Block a user