
|
If you were logged in you would be able to see more operations.
|
|
|
| Planning Status: |
Unspecified
|
|
Test case:
create table aaa (a integer);
commit;
create or alter procedure bbb
returns (b type of column aaa.a)
as
begin
suspend;
end
commit;
create or alter procedure bbb
returns (b varchar(10))
as
begin
suspend;
end
commit;
At this point, column "aaa.a" has data type of varchar(10)! It looks like the underlying domain has been modified without checking other dependencies.
|
|
Description
|
Test case:
create table aaa (a integer);
commit;
create or alter procedure bbb
returns (b type of column aaa.a)
as
begin
suspend;
end
commit;
create or alter procedure bbb
returns (b varchar(10))
as
begin
suspend;
end
commit;
At this point, column "aaa.a" has data type of varchar(10)! It looks like the underlying domain has been modified without checking other dependencies. |
Show » |
| There are no comments yet on this issue.
|
|