You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-dev@db.apache.org by "Knut Anders Hatlen (JIRA)" <ji...@apache.org> on 2014/08/14 16:52:17 UTC

[jira] [Created] (DERBY-6705) Triggers should not allow MERGE statements that reference temporary tables

Knut Anders Hatlen created DERBY-6705:
-----------------------------------------

             Summary: Triggers should not allow MERGE statements that reference temporary tables
                 Key: DERBY-6705
                 URL: https://issues.apache.org/jira/browse/DERBY-6705
             Project: Derby
          Issue Type: Bug
          Components: SQL
    Affects Versions: 10.11.1.1
            Reporter: Knut Anders Hatlen


The reference manual topic on the DECLARE GLOBAL TEMPORARY TABLE statement says: "Temporary tables cannot be referenced in a triggeredSQLStatement or in a WHEN clause"

Still, a CREATE TRIGGER statement succeeds if the triggered SQL statement is a MERGE statement that references a temporary table:

{noformat}
ij> connect 'jdbc:derby:memory:db;create=true';
ij> declare global temporary table temp (x int) not logged;
0 rows inserted/updated/deleted
ij> create table t1(x int);
0 rows inserted/updated/deleted
ij> create trigger tr after insert on t1 insert into session.temp values 1;
ERROR XCL51: The requested function can not reference tables in SESSION schema.
ij> create trigger tr after insert on t1 merge into session.temp using t1 on session.temp.x=t1.x when matched then delete;
0 rows inserted/updated/deleted
ij> insert into t1 values 1,2,3;
3 rows inserted/updated/deleted
{noformat}

The second CREATE TRIGGER statement above should have failed the same way as the first.



--
This message was sent by Atlassian JIRA
(v6.2#6252)