Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ALTER VIEW fails when updating two or more related views in one transaction [CORE3060] #3440

Open
firebird-automations opened this issue Jun 25, 2010 · 0 comments

Comments

@firebird-automations
Copy link
Collaborator

Submitted by: @samofatov

ALTER VIEW fails when updating several interrelated views in one transaction.

---- test.sql
set autoddl off;

create table test_table (
id integer
);

create view test_view(t) as
select id from test_table;

create view test2_view(t2) as
select t from test_view;

commit;

alter view test2_view(t2) as
select cast(null as integer) from rdb$database;

alter view test_view(t)
as select cast(null as integer) from rdb$database;

commit;

alter view test2_view(t2) as
select t from test_view;

alter view test_view(t) as
select id from test_table;

commit;

Statement failed, SQLCODE = 42000
unsuccessful metadata update
-cannot delete
-DOMAIN RDB$5
-there are 1 dependencies

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant