[
https://issues.redhat.com/browse/TEIID-5963?page=com.atlassian.jira.plugi...
]
Renat Eskenin commented on TEIID-5963:
--------------------------------------
I used 14 Teiid with deps:
{code}
<dependency>
<groupId>org.teiid</groupId>
<artifactId>teiid-spring-boot-starter</artifactId>
<version>1.5.0</version>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>spring-odata</artifactId>
<version>1.5.0</version>
</dependency>
{code}
With DDL:
{code}
CREATE DATABASE db;
USE DATABASE db;
--use translator
CREATE FOREIGN DATA WRAPPER mypostgresql type postgresql OPTIONS (supportsOrderBy true);
--create teiid server
CREATE SERVER pgserver FOREIGN DATA WRAPPER mypostgresql;
--create source schema
CREATE SCHEMA schpostgresql SERVER pgserver;
--schema manual_loads
IMPORT FOREIGN SCHEMA manual_loads FROM SERVER pgserver INTO schpostgresql
OPTIONS("importer.useFullSchemaName"
'false',"importer.schemaName" 'manual_loads');
SET SCHEMA schpostgresql;
ALTER TABLE dm_vcom_product ADD primary key (id);
{code}
And get same results. How I can get more information to you for reproducing?
Teiid imported all schemas from PG
----------------------------------
Key: TEIID-5963
URL:
https://issues.redhat.com/browse/TEIID-5963
Project: Teiid
Issue Type: Bug
Components: JDBC Connector
Affects Versions: 14.0
Reporter: Renat Eskenin
Assignee: Steven Hawkins
Priority: Major
When we started teiid spring boot app, we have long start time.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)