mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 13:33:07 +01:00
57 lines
1.5 KiB
Python
57 lines
1.5 KiB
Python
#coding:utf-8
|
|
|
|
"""
|
|
ID: issue-6133
|
|
ISSUE: 6133
|
|
TITLE: Provide name of read-only column incorrectly referenced in UPDATE ... SET xxx
|
|
DESCRIPTION:
|
|
Table with computed field (non-ascii) that is result of addition is used here.
|
|
UPDATE statement is used in trivial form, then as 'update or insert' and as 'merge'.
|
|
All cases should produce STDERR with specifying table name and R/O column after dot.
|
|
JIRA: CORE-5874
|
|
FBTEST: bugs.core_5874
|
|
"""
|
|
|
|
import pytest
|
|
from firebird.qa import *
|
|
|
|
db = db_factory(charset='UTF8')
|
|
|
|
test_script = """
|
|
recreate table test(id int, x int, y int, "hozzáadása" computed by (x * y) );
|
|
commit;
|
|
|
|
set planonly;
|
|
|
|
update test set "hozzáadása" = 1;
|
|
|
|
update or insert into test(id, "hozzáadása")
|
|
values(1, 111) matching(id)
|
|
returning "hozzáadása";
|
|
|
|
merge into test t
|
|
using( select 1 as id, 2 as x, 3 as y from rdb$database ) s on s.id = t.id
|
|
when matched then
|
|
update set "hozzáadása" = 1
|
|
;
|
|
"""
|
|
|
|
act = isql_act('db', test_script)
|
|
|
|
expected_stderr = """
|
|
Statement failed, SQLSTATE = 42000
|
|
attempted update of read-only column TEST.hozzáadása
|
|
|
|
Statement failed, SQLSTATE = 42000
|
|
attempted update of read-only column TEST.hozzáadása
|
|
|
|
Statement failed, SQLSTATE = 42000
|
|
attempted update of read-only column TEST.hozzáadása
|
|
"""
|
|
|
|
@pytest.mark.version('>=4.0')
|
|
def test_1(act: Action):
|
|
act.expected_stderr = expected_stderr
|
|
act.execute()
|
|
assert act.clean_stderr == act.clean_expected_stderr
|