Steven Hawkins created TEIID-4765:
-------------------------------------
Summary: The notion of resolving order may need to be extended beyond a
schema
Key: TEIID-4765
URL:
https://issues.jboss.org/browse/TEIID-4765
Project: Teiid
Issue Type: Quality Risk
Components: Query Engine
Reporter: Steven Hawkins
Assignee: Steven Hawkins
Fix For: 9.3
With TEIID-4629 it is possible to interleave the definition of schema elements, which is
not accounted for by the loading order - and will fail upon later validation/resolving.
create virtual schema first;
create virtual schema second;
set schema second;
create view x ...;
set schema first;
create view y as select * from x;
the last statement will fail later as we'll try to resolve the schemas in order.
A similar issue exists with create domain - TEIID-3624
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)