[teiid-issues] [JBoss JIRA] (TEIID-3699) execute immediate only checks immediate parent scope

Steven Hawkins (JIRA) issues at jboss.org
Fri Sep 11 15:58:00 EDT 2015


Steven Hawkins created TEIID-3699:
-------------------------------------

             Summary: execute immediate only checks immediate parent scope
                 Key: TEIID-3699
                 URL: https://issues.jboss.org/browse/TEIID-3699
             Project: Teiid
          Issue Type: Bug
          Components: Query Engine
    Affects Versions: 8.7
            Reporter: Steven Hawkins
            Assignee: Steven Hawkins
             Fix For: 8.12


A procedure such as:

{code}
begin
  create local temporary table t1 (e1 string);
  loop on (select 1 as a union all select 2) as c
  begin
    execute immediate 'select c.a' as e1 string into t1;
  end
 select * from t1;
end
{code}

should return two rows, but instead returns nothing because the execute immediate statement doesn't see the surrounding t1 temp table.



--
This message was sent by Atlassian JIRA
(v6.4.11#64026)


More information about the teiid-issues mailing list