mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 21:43:06 +01:00
238 lines
6.1 KiB
Python
238 lines
6.1 KiB
Python
#coding:utf-8
|
|
#
|
|
# id: bugs.core_5756_addi
|
|
# title: Regression: FB crashes when trying to recreate table that is in use by DML
|
|
# decription:
|
|
# A bug was detected during implementation of test for CORE-5754: FB crashed with currpupting database
|
|
# after we run test script two times (letter to dimitr et al 20-feb-18 13:52). Moreover, gfix -v -full
|
|
# did not produce any messages about database state, so test DB should be restored from copy.
|
|
# Decided to change name of this .fbt after getting reply from Roman Simakov (21-feb-2018 12:19)
|
|
# that this bug was already fixed by dimitr in:
|
|
# https://github.com/FirebirdSQL/firebird/commit/9afef198c17368276ccd7a428e159c1ca5684a60
|
|
# (Postfix for CORE-2284/CORE-5677, fixes regression CORE-5756)
|
|
# Checked on:
|
|
# 3.0.4.32920: OK, 2.625s.
|
|
# 4.0.0.912: OK, 2.781s.
|
|
# ::: NOTE :::
|
|
# Script for test is launched here TWO times ("pass I", "pass II").
|
|
#
|
|
# tracker_id: CORE-5756
|
|
# min_versions: ['3.0.4']
|
|
# versions: 3.0.4
|
|
# qmid: None
|
|
|
|
import pytest
|
|
from firebird.qa import db_factory, isql_act, Action
|
|
|
|
# version: 3.0.4
|
|
# resources: None
|
|
|
|
substitutions_1 = []
|
|
|
|
init_script_1 = """"""
|
|
|
|
db_1 = db_factory(sql_dialect=3, init=init_script_1)
|
|
|
|
test_script_1 = """
|
|
set bail on;
|
|
commit;
|
|
|
|
------------------------------------------------- PASS I --------------------------------
|
|
|
|
connect '$(DSN)' user sysdba password 'masterkey';
|
|
|
|
create or alter user tmp$c5754 password '123';
|
|
commit;
|
|
|
|
create or alter trigger ddl_log_afte inactive after any ddl statement as begin end;
|
|
commit;
|
|
drop trigger ddl_log_afte;
|
|
commit;
|
|
|
|
connect '$(DSN)' user sysdba password 'masterkey';
|
|
|
|
recreate table ddl_log(id int);
|
|
recreate table test(id int);
|
|
recreate sequence g;
|
|
commit;
|
|
|
|
recreate table ddl_log (
|
|
evn_type varchar(50)
|
|
,obj_type varchar(50)
|
|
,obj_name varchar(50)
|
|
,sql_text blob sub_type text
|
|
,last_ddl_author varchar(50) default current_user
|
|
);
|
|
commit;
|
|
|
|
-- DDL operations for managing triggers and indices re-use table privileges.
|
|
grant alter any table to tmp$c5754;
|
|
commit;
|
|
|
|
set term ^;
|
|
|
|
create or alter trigger test_bi for test active before insert position 0 as
|
|
begin
|
|
new.id = coalesce(new.id, gen_id(g, 1) );
|
|
end
|
|
^
|
|
|
|
create or alter trigger ddl_log_afte active after any ddl statement as
|
|
begin
|
|
in autonomous transaction do
|
|
insert into ddl_log(
|
|
evn_type
|
|
,obj_type
|
|
,obj_name
|
|
,sql_text
|
|
)
|
|
values (
|
|
rdb$get_context('DDL_TRIGGER', 'EVENT_TYPE')
|
|
,rdb$get_context('DDL_TRIGGER', 'OBJECT_TYPE')
|
|
,rdb$get_context('DDL_TRIGGER', 'OBJECT_NAME')
|
|
,rdb$get_context('DDL_TRIGGER', 'SQL_TEXT')
|
|
);
|
|
|
|
end
|
|
^
|
|
|
|
set term ;^
|
|
commit;
|
|
|
|
connect '$(DSN)' user tmp$c5754 password '123';
|
|
|
|
set term ^;
|
|
alter trigger test_bi as
|
|
begin
|
|
-- this trigger was updated by tmp$c5754
|
|
if ( new.id is null ) then
|
|
new.id = gen_id(g, 1);
|
|
end
|
|
^
|
|
set term ^;
|
|
commit;
|
|
|
|
connect '$(DSN)' user sysdba password 'masterkey';
|
|
drop user tmp$c5754;
|
|
commit;
|
|
|
|
set list on;
|
|
set count on;
|
|
--set echo on;
|
|
select last_ddl_author
|
|
from ddl_log
|
|
where
|
|
evn_type = upper('alter')
|
|
and obj_type = upper('trigger')
|
|
and sql_text containing 'tmp$c5754'
|
|
;
|
|
rollback;
|
|
|
|
------------------------------------------------- PASS II --------------------------------
|
|
|
|
connect '$(DSN)' user sysdba password 'masterkey';
|
|
|
|
create or alter user tmp$c5754 password '123';
|
|
commit;
|
|
|
|
create or alter trigger ddl_log_afte inactive after any ddl statement as begin end;
|
|
commit;
|
|
drop trigger ddl_log_afte;
|
|
commit;
|
|
|
|
connect '$(DSN)' user sysdba password 'masterkey';
|
|
|
|
recreate table ddl_log(id int);
|
|
recreate table test(id int);
|
|
recreate sequence g;
|
|
commit;
|
|
|
|
recreate table ddl_log (
|
|
evn_type varchar(50)
|
|
,obj_type varchar(50)
|
|
,obj_name varchar(50)
|
|
,sql_text blob sub_type text
|
|
,last_ddl_author varchar(50) default current_user
|
|
);
|
|
commit;
|
|
|
|
-- DDL operations for managing triggers and indices re-use table privileges.
|
|
grant alter any table to tmp$c5754;
|
|
commit;
|
|
|
|
set term ^;
|
|
|
|
create or alter trigger test_bi for test active before insert position 0 as
|
|
begin
|
|
new.id = coalesce(new.id, gen_id(g, 1) );
|
|
end
|
|
^
|
|
|
|
create or alter trigger ddl_log_afte active after any ddl statement as
|
|
begin
|
|
in autonomous transaction do
|
|
insert into ddl_log(
|
|
evn_type
|
|
,obj_type
|
|
,obj_name
|
|
,sql_text
|
|
)
|
|
values (
|
|
rdb$get_context('DDL_TRIGGER', 'EVENT_TYPE')
|
|
,rdb$get_context('DDL_TRIGGER', 'OBJECT_TYPE')
|
|
,rdb$get_context('DDL_TRIGGER', 'OBJECT_NAME')
|
|
,rdb$get_context('DDL_TRIGGER', 'SQL_TEXT')
|
|
);
|
|
|
|
end
|
|
^
|
|
|
|
set term ;^
|
|
commit;
|
|
|
|
connect '$(DSN)' user tmp$c5754 password '123';
|
|
|
|
set term ^;
|
|
alter trigger test_bi as
|
|
begin
|
|
-- this trigger was updated by tmp$c5754
|
|
if ( new.id is null ) then
|
|
new.id = gen_id(g, 1);
|
|
end
|
|
^
|
|
set term ^;
|
|
commit;
|
|
|
|
connect '$(DSN)' user sysdba password 'masterkey';
|
|
drop user tmp$c5754;
|
|
commit;
|
|
|
|
set list on;
|
|
set count on;
|
|
|
|
select last_ddl_author
|
|
from ddl_log
|
|
where
|
|
evn_type = upper('alter')
|
|
and obj_type = upper('trigger')
|
|
and sql_text containing 'tmp$c5754'
|
|
;
|
|
|
|
"""
|
|
|
|
act_1 = isql_act('db_1', test_script_1, substitutions=substitutions_1)
|
|
|
|
expected_stdout_1 = """
|
|
LAST_DDL_AUTHOR TMP$C5754
|
|
Records affected: 1
|
|
LAST_DDL_AUTHOR TMP$C5754
|
|
Records affected: 1
|
|
"""
|
|
|
|
@pytest.mark.version('>=3.0.4')
|
|
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
|
|
|