Altering of a TYPE OF COLUMN parameter affects the original column
------------------------------------------------------------------

                 Key: CORE-3491
                 URL: http://tracker.firebirdsql.org/browse/CORE-3491
             Project: Firebird Core
          Issue Type: Bug
          Components: Engine
    Affects Versions: 2.5.0
            Reporter: Dmitry Yemanov


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.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://tracker.firebirdsql.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

------------------------------------------------------------------------------
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel

Reply via email to