[JBoss JIRA] (TEIIDDES-2381) Error with virtual procedure inserting into global temporary table
by Steven Hawkins (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2381?page=com.atlassian.jira.plu... ]
Steven Hawkins commented on TEIIDDES-2381:
------------------------------------------
There is handling in TempMetadataAdapter. Do you have the metadata wrapped by a TempMetadataAdapter?
> Error with virtual procedure inserting into global temporary table
> ------------------------------------------------------------------
>
> Key: TEIIDDES-2381
> URL: https://issues.jboss.org/browse/TEIIDDES-2381
> Project: Teiid Designer
> Issue Type: Bug
> Components: Transformations
> Affects Versions: 8.6
> Reporter: Jan Stastny
>
> I have a view model (called IPView) with global temporary table (called global_temp_table), then I have virtual procedure in the same model where I try to insert data into the global temporary table. When the Transformation Editor's content is saved, it displays an error under the editor's text area. The error has following message:
> ERROR: TEIID30065 Error parsing query plan transformation for IPView.global_temp_table
> This error does not give the user any hint what went wrong (what he did wrong).
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)
11 years, 6 months
[JBoss JIRA] (TEIIDDES-2381) Error with virtual procedure inserting into global temporary table
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2381?page=com.atlassian.jira.plu... ]
Barry LaFond commented on TEIIDDES-2381:
----------------------------------------
[~shawkins] How does your GroupSymbol & resolver framework handle a *Global Temporary Table* ? Just treats it like any other *Temp Table* ?
I ran this in debug and explicitely set the isTempTable value to *true* and the query validated.
Note I used the simple use-case from your docs:
{code}
BEGIN
INSERT INTO TestViewModel.VT (A, B) VALUES (0, 1);
END
{code}
results in error: *ERROR: TEIID30065 Error parsing query plan transformation for TestViewModel.VT*
> Error with virtual procedure inserting into global temporary table
> ------------------------------------------------------------------
>
> Key: TEIIDDES-2381
> URL: https://issues.jboss.org/browse/TEIIDDES-2381
> Project: Teiid Designer
> Issue Type: Bug
> Components: Transformations
> Affects Versions: 8.6
> Reporter: Jan Stastny
>
> I have a view model (called IPView) with global temporary table (called global_temp_table), then I have virtual procedure in the same model where I try to insert data into the global temporary table. When the Transformation Editor's content is saved, it displays an error under the editor's text area. The error has following message:
> ERROR: TEIID30065 Error parsing query plan transformation for IPView.global_temp_table
> This error does not give the user any hint what went wrong (what he did wrong).
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)
11 years, 6 months
[JBoss JIRA] (TEIIDDES-2381) Error with virtual procedure inserting into global temporary table
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2381?page=com.atlassian.jira.plu... ]
Barry LaFond commented on TEIIDDES-2381:
----------------------------------------
Looks like the query resolving framework in the teiid client plugin uses the IQueryMetadataInterface.isTemporaryTable(Object groupID) method.Unfortunately, the isGlobalTempTable extension property is not available.
First problem is probably the lack of that property on the TableRecordImple classes. They probably need to check extension properties and set the value to true/false and expose via a isGlobalTempTable() method.
> Error with virtual procedure inserting into global temporary table
> ------------------------------------------------------------------
>
> Key: TEIIDDES-2381
> URL: https://issues.jboss.org/browse/TEIIDDES-2381
> Project: Teiid Designer
> Issue Type: Bug
> Components: Transformations
> Affects Versions: 8.6
> Reporter: Jan Stastny
>
> I have a view model (called IPView) with global temporary table (called global_temp_table), then I have virtual procedure in the same model where I try to insert data into the global temporary table. When the Transformation Editor's content is saved, it displays an error under the editor's text area. The error has following message:
> ERROR: TEIID30065 Error parsing query plan transformation for IPView.global_temp_table
> This error does not give the user any hint what went wrong (what he did wrong).
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)
11 years, 6 months
[JBoss JIRA] (TEIIDDES-2341) Starting server does not result in full Teiid connection requiring Refresh action
by Paul Richardson (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2341?page=com.atlassian.jira.plu... ]
Paul Richardson commented on TEIIDDES-2341:
-------------------------------------------
https://github.com/Teiid-Designer/teiid-designer/pull/420
> Starting server does not result in full Teiid connection requiring Refresh action
> ---------------------------------------------------------------------------------
>
> Key: TEIIDDES-2341
> URL: https://issues.jboss.org/browse/TEIIDDES-2341
> Project: Teiid Designer
> Issue Type: Bug
> Components: Teiid Integration
> Affects Versions: 8.6.1
> Environment: Eclipse LUNA and JBoss Tools Luna TP
> Reporter: Barry LaFond
> Assignee: Paul Richardson
> Priority: Critical
> Fix For: 8.6.1, 9.0
>
>
> 1) Testing against an EAP 6.1 Alpha + Teiid 8.7 runtime, I started the server and tried to preview a table. Warning dialog displayed indicating there was no Teiid connection. (not the Teiid contents in the server view indicated no Teiid connection)
> 2) Clicked the Refresh button/action in the server view and could view the data sources & VDBs
> 3) Tried preview again and it worked.
> MORE INFO
> * Creating a server configuration for DV6.1 ER3 (EAP 6.3) and starting does *not* show same behavior. The Teiid contents are displayed correctly.
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)
11 years, 6 months
[JBoss JIRA] (TEIIDDES-2381) Error with virtual procedure inserting into global temporary table
by Jan Stastny (JIRA)
Jan Stastny created TEIIDDES-2381:
-------------------------------------
Summary: Error with virtual procedure inserting into global temporary table
Key: TEIIDDES-2381
URL: https://issues.jboss.org/browse/TEIIDDES-2381
Project: Teiid Designer
Issue Type: Bug
Components: Transformations
Affects Versions: 8.6
Reporter: Jan Stastny
I have a view model (called IPView) with global temporary table (called global_temp_table), then I have virtual procedure in the same model where I try to insert data into the global temporary table. When the Transformation Editor's content is saved, it displays an error under the editor's text area. The error has following message:
ERROR: TEIID30065 Error parsing query plan transformation for IPView.global_temp_table
This error does not give the user any hint what went wrong (what he did wrong).
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)
11 years, 6 months
[JBoss JIRA] (TEIIDDES-2331) Issues with renaming Source Model (8.3.4.CR1 and 8.6.0 + Windows 7)
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2331?page=com.atlassian.jira.plu... ]
Barry LaFond updated TEIIDDES-2331:
-----------------------------------
Fix Version/s: 8.6.1
9.0.1
(was: 8.3.5)
> Issues with renaming Source Model (8.3.4.CR1 and 8.6.0 + Windows 7)
> -------------------------------------------------------------------
>
> Key: TEIIDDES-2331
> URL: https://issues.jboss.org/browse/TEIIDDES-2331
> Project: Teiid Designer
> Issue Type: Bug
> Affects Versions: 8.3.4, 8.6
> Environment: Windows 7
> Reporter: Matus Makovy
> Assignee: Mark Drilling
> Fix For: 8.6.1, 9.0.1, 9.0
>
> Attachments: Dataroles_project.zip, log.log, screenshot1.png, screenshot2.png, screenshot3.png, screenshot4.png, screenshot5.png
>
>
> There is couple of issues with renaming source model that is referenced in some view model.
> I am using project Dataroles_project.zip (attached)
> 1. I tried to rename Products_source.xmi to Products_source1.xmi
> * this generates some error in log but it works...
> *[screenshot1.png]
> 2. Rename Products_source1.xmi to Products_source2.xmi
> * this fails to rewrite the reference in view model
> * I changed the references manually
> *[screenshot2.png and screenshot3.png]
> 3. Remane Products_source2.xmi to Products_source3.xmi
> * this deletes tables from view model
> *[screenshot4.png and screenshot5.png]
> This problem occurs only on Windows, Linux is fine...
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)
11 years, 6 months
[JBoss JIRA] (TEIIDDES-2288) "Starting JBoss EAP 6.1+...e Server" stays 0% on Windows
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2288?page=com.atlassian.jira.plu... ]
Barry LaFond updated TEIIDDES-2288:
-----------------------------------
Fix Version/s: 9.0.1
(was: 8.3.5)
> "Starting JBoss EAP 6.1+...e Server" stays 0% on Windows
> --------------------------------------------------------
>
> Key: TEIIDDES-2288
> URL: https://issues.jboss.org/browse/TEIIDDES-2288
> Project: Teiid Designer
> Issue Type: Bug
> Components: Eclipse Integration
> Affects Versions: 8.3.3
> Environment: - Windows
> - JDK 1.7.0_62
> - JDV 6.0.0
> - JBDS 7.1.0
> - JBDS-7.1.1/jbdevstudio-integration-stack-updatesite-7.0.2.GA.zip
> Reporter: Hisanobu Okuda
> Assignee: Paul Richardson
> Fix For: 8.6.1, 9.0.1, 9.0
>
>
> A server status "Starting JBoss EAP 6.1+...e Server" which is shown in the right-bottom in the JBDS window stays 0%, when clicking "Restart the server (Ctrl+Alt+R)" button, and does not go to 100%. The issue occurs on only Windows, but not on Linux.
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)
11 years, 6 months