mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 21:43:06 +01:00
84 lines
2.0 KiB
Python
84 lines
2.0 KiB
Python
#coding:utf-8
|
|
|
|
"""
|
|
ID: dml.merge-03
|
|
FBTEST: functional.dml.merge.03
|
|
TITLE: MERGE ... RETURNING must refer either ALIAS of the table (if it is defined) or context variables OLD and NEW
|
|
DESCRIPTION:
|
|
"""
|
|
|
|
import pytest
|
|
from firebird.qa import *
|
|
|
|
db = db_factory()
|
|
|
|
test_script = """
|
|
set list on;
|
|
|
|
recreate table test_a(id int primary key, x int);
|
|
recreate table test_b(id int primary key, x int);
|
|
commit;
|
|
insert into test_a(id, x) values(1, 100);
|
|
insert into test_b(id, x) values(1, 100);
|
|
commit;
|
|
|
|
--set echo on;
|
|
|
|
-- [ 1 ] must FAIL with "SQLSTATE = 42S22 / ... / -Column unknown -TEST_B.ID"
|
|
merge into test_b t
|
|
using test_a s on s.id = t.id
|
|
when matched then
|
|
delete returning test_b.id, test_b.x
|
|
;
|
|
|
|
rollback;
|
|
|
|
-- [ 2 ] must PASS:
|
|
merge into test_b t
|
|
using test_a s on s.id = t.id
|
|
when matched then
|
|
delete
|
|
returning old.id as old_id, t.x as old_t_x
|
|
;
|
|
|
|
rollback;
|
|
|
|
-- [ 3 ] must PASS:
|
|
merge into test_b t
|
|
using test_a s on s.id = t.id
|
|
when matched then
|
|
update set t.id = -s.id - 1, t.x = - s.x - 1
|
|
returning old.id as old_id, old.x as old_x, new.id as new_id, t.x as new_x
|
|
;
|
|
|
|
rollback;
|
|
"""
|
|
|
|
act = isql_act('db', test_script, substitutions=[('-At line .*', ''), ('[ \t]+', ' ')])
|
|
|
|
expected_stdout = """
|
|
OLD_ID 1
|
|
OLD_T_X 100
|
|
|
|
OLD_ID 1
|
|
OLD_X 100
|
|
NEW_ID -2
|
|
NEW_X -101
|
|
"""
|
|
|
|
expected_stderr = """
|
|
Statement failed, SQLSTATE = 42S22
|
|
Dynamic SQL Error
|
|
-SQL error code = -206
|
|
-Column unknown
|
|
-TEST_B.ID
|
|
"""
|
|
|
|
@pytest.mark.version('>=4.0')
|
|
def test_1(act: Action):
|
|
act.expected_stdout = expected_stdout
|
|
act.expected_stderr = expected_stderr
|
|
act.execute()
|
|
assert (act.clean_stderr == act.clean_expected_stderr and
|
|
act.clean_stdout == act.clean_expected_stdout)
|