mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 21:43:06 +01:00
56 lines
1.5 KiB
Python
56 lines
1.5 KiB
Python
#coding:utf-8
|
|
#
|
|
# id: functional.index.alter_05
|
|
# title: ALTER INDEX - INACTIVE FOREIGN KEY
|
|
# decription: ALTER INDEX - INACTIVE FOREIGN KEY
|
|
#
|
|
# Note !SF 609538
|
|
# Bad error message "-Cannot deactivate primary index"
|
|
#
|
|
# Dependencies:
|
|
# CREATE DATABASE
|
|
# CREATE TABLE with PRIMARY KEY
|
|
# CREATE TABLE with FOREIGN KEY
|
|
# tracker_id:
|
|
# min_versions: []
|
|
# versions: 3.0
|
|
# qmid: functional.index.alter.alter_index_05
|
|
|
|
import pytest
|
|
from firebird.qa import db_factory, isql_act, Action
|
|
|
|
# version: 3.0
|
|
# resources: None
|
|
|
|
substitutions_1 = []
|
|
|
|
init_script_1 = """CREATE TABLE pk( a INTEGER NOT NULL,
|
|
CONSTRAINT pkindx PRIMARY KEY(a)
|
|
);
|
|
commit;
|
|
CREATE TABLE fk( a INTEGER NOT NULL,
|
|
CONSTRAINT fkindx FOREIGN KEY(a) REFERENCES pk(a)
|
|
);
|
|
commit;"""
|
|
|
|
db_1 = db_factory(sql_dialect=3, init=init_script_1)
|
|
|
|
test_script_1 = """ALTER INDEX fkindx INACTIVE;"""
|
|
|
|
act_1 = isql_act('db_1', test_script_1, substitutions=substitutions_1)
|
|
|
|
expected_stderr_1 = """Statement failed, SQLSTATE = 27000
|
|
unsuccessful metadata update
|
|
-ALTER INDEX FKINDX failed
|
|
-action cancelled by trigger (2) to preserve data integrity
|
|
-Cannot deactivate index used by an integrity constraint
|
|
|
|
"""
|
|
|
|
@pytest.mark.version('>=3.0')
|
|
def test_alter_05_1(act_1: Action):
|
|
act_1.expected_stderr = expected_stderr_1
|
|
act_1.execute()
|
|
assert act_1.clean_expected_stderr == act_1.clean_stderr
|
|
|