2021-04-26 20:07:00 +02:00
|
|
|
#coding:utf-8
|
|
|
|
|
2022-01-20 17:32:14 +01:00
|
|
|
"""
|
|
|
|
ID: issue-2338
|
|
|
|
ISSUE: 2338
|
|
|
|
TITLE: Dropping and adding a domain constraint in the same transaction leaves incorrect dependencies
|
|
|
|
DESCRIPTION:
|
|
|
|
JIRA: CORE-1907
|
2022-02-02 15:46:19 +01:00
|
|
|
FBTEST: bugs.core_1907
|
2023-11-25 16:42:40 +01:00
|
|
|
NOTES:
|
|
|
|
[25.11.2023] pzotov
|
|
|
|
Writing code requires more care since 6.0.0.150: ISQL does not allow specifying duplicate delimiters without any statements between them (two semicolon, two carets etc).
|
2022-01-20 17:32:14 +01:00
|
|
|
"""
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-20 17:32:14 +01:00
|
|
|
import pytest
|
|
|
|
from firebird.qa import *
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-20 17:32:14 +01:00
|
|
|
init_script = """create table t1 (n integer);
|
2021-04-26 20:07:00 +02:00
|
|
|
create table t2 (n integer);
|
|
|
|
|
|
|
|
create domain d1 integer check (value = (select n from t1));
|
|
|
|
"""
|
|
|
|
|
2022-01-20 17:32:14 +01:00
|
|
|
db = db_factory(init=init_script)
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-20 17:32:14 +01:00
|
|
|
test_script = """set autoddl off;
|
2021-04-26 20:07:00 +02:00
|
|
|
|
|
|
|
alter domain d1 drop constraint;
|
2023-11-25 16:42:40 +01:00
|
|
|
alter domain d1 add constraint check (value = (select n from t2));
|
2021-04-26 20:07:00 +02:00
|
|
|
commit;
|
|
|
|
|
|
|
|
drop table t1; -- cannot drop - there are dependencies
|
|
|
|
commit;
|
|
|
|
"""
|
|
|
|
|
2022-01-20 17:32:14 +01:00
|
|
|
act = isql_act('db', test_script)
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-20 17:32:14 +01:00
|
|
|
@pytest.mark.version('>=3')
|
|
|
|
def test_1(act: Action):
|
2023-11-25 11:37:49 +01:00
|
|
|
act.expected_stdout = ''
|
|
|
|
act.execute(combine_output = True)
|
|
|
|
assert act.clean_stdout == act.clean_expected_stdout
|