]
Matej Kralik updated TEIIDDES-2788:
-----------------------------------
Labels: release_notes verified_jbdsis-9.0.3 (was: )
Access Pattern not generated when exporting dynamic VDB
-------------------------------------------------------
Key: TEIIDDES-2788
URL:
https://issues.jboss.org/browse/TEIIDDES-2788
Project: Teiid Designer
Issue Type: Bug
Components: Dynamic VDBs
Affects Versions: 9.0.4
Reporter: Andrej Šmigala
Assignee: Barry LaFond
Labels: release_notes, verified_jbdsis-9.0.3
Fix For: 10.0.2
Attachments: APproj.zip
When exporting a dynamic VDB, access pattern constrains on model tables are not
exported.
Actual DDL:
{code:sql}
CREATE FOREIGN TABLE s1 (
newColumn_1 string(4000),
newColumn_2 string(4000)
)
{code}
Expected DDL:
{code:sql}
CREATE FOREIGN TABLE s1 (
newColumn_1 string(4000),
newColumn_2 string(4000),
CONSTRAINT NewAccessPattern ACCESSPATTERN (newColumn_1)
)
{code}