"attempted update of read-only column" when trying update editable view without 
triggers
----------------------------------------------------------------------------------------

                 Key: CORE-3991
                 URL: http://tracker.firebirdsql.org/browse/CORE-3991
             Project: Firebird Core
          Issue Type: Bug
          Components: Engine
    Affects Versions: 3.0 Alpha 1
         Environment: Firebird-3.0.0.30131-0_x64
            Reporter: Alex Bekhtin


CREATE TABLE TEST_TABLE (
    ID  INTEGER
);

CREATE OR ALTER VIEW VIEW_TEST_TABLE(
    ID)
AS
select id 
from test_table;

insert into view_test_table(ID) values(10);

update view_test_table set ID = 10;

-----------------
This column cannot be updated because it is derived from an SQL function or 
expression.
attempted update of read-only column.





-- 
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

        

------------------------------------------------------------------------------
Monitor your physical, virtual and cloud infrastructure from a single
web console. Get in-depth insight into apps, servers, databases, vmware,
SAP, cloud infrastructure, etc. Download 30-day Free Trial.
Pricing starts from $795 for 25 servers or applications!
http://p.sf.net/sfu/zoho_dev2dev_nov
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel

Reply via email to