
|
If you were logged in you would be able to see more operations.
|
|
|
| Planning Status: |
Unspecified
|
|
Ability to alter computed fields introduced the possibility of circular dependencies between them.
create table t (
n integer,
n1 computed by (n),
n2 computed by (n1)
);
alter table t alter n1 computed by (n2);
select * from t;
-- segmentation fault (due to stack overflow in CMP/pass1)
|
|
Description
|
Ability to alter computed fields introduced the possibility of circular dependencies between them.
create table t (
n integer,
n1 computed by (n),
n2 computed by (n1)
);
alter table t alter n1 computed by (n2);
select * from t;
-- segmentation fault (due to stack overflow in CMP/pass1) |
Show » |
|