mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 21:43:06 +01:00
81 lines
2.0 KiB
Python
81 lines
2.0 KiB
Python
#coding:utf-8
|
|
#
|
|
# id: bugs.core_5147
|
|
# title: create trigger fails with ambiguous field name between table B and table A error
|
|
# decription:
|
|
# tracker_id: CORE-5147
|
|
# min_versions: ['3.0']
|
|
# versions: 3.0
|
|
# qmid: None
|
|
|
|
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(sql_dialect=3, init=init_script_1)
|
|
|
|
test_script_1 = """
|
|
-- Result: OK on build based on sources 18-03-2016 14:40
|
|
-- (take sources from github, build No. was wrong - 32400).
|
|
|
|
recreate table test_b (
|
|
id integer not null,
|
|
qty float,
|
|
constraint pk_b primary key (id)
|
|
);
|
|
recreate table test_a (
|
|
id integer not null,
|
|
qty float,
|
|
constraint pk_a primary key (id)
|
|
);
|
|
|
|
set term ^;
|
|
create or alter trigger test_b_bi for test_b active before insert position 0 as
|
|
declare oldqty float;
|
|
declare newqty float;
|
|
begin
|
|
update test_a
|
|
set qty = new.qty
|
|
where
|
|
id=new.id
|
|
returning new.qty, old.qty
|
|
into newqty, oldqty;
|
|
|
|
rdb$set_context('USER_SESSION' ,'TRG_OLD_QTY', oldQty);
|
|
rdb$set_context('USER_SESSION' ,'TRG_NEW_QTY', newQty);
|
|
end
|
|
^
|
|
set term ;^
|
|
commit;
|
|
|
|
insert into test_a values( 1, 3.1415926);
|
|
insert into test_b(id, qty) values( 1, 2.718281828 );
|
|
|
|
set list on;
|
|
|
|
select
|
|
rdb$get_context('USER_SESSION' ,'TRG_OLD_QTY') as trg_old_qty
|
|
,rdb$get_context('USER_SESSION' ,'TRG_NEW_QTY') as trg_new_qty
|
|
from rdb$database;
|
|
"""
|
|
|
|
act_1 = isql_act('db_1', test_script_1, substitutions=substitutions_1)
|
|
|
|
expected_stdout_1 = """
|
|
TRG_OLD_QTY 3.1415925
|
|
TRG_NEW_QTY 2.7182817
|
|
"""
|
|
|
|
@pytest.mark.version('>=3.0')
|
|
def test_1(act_1: Action):
|
|
act_1.expected_stdout = expected_stdout_1
|
|
act_1.execute()
|
|
assert act_1.clean_expected_stdout == act_1.clean_stdout
|
|
|