You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When reverse engineering tables from an existing exasol database, comments are not recognized correctly. The comments on a table are not being recognized, but they are somehow being used as (part of) the comment on the table:
Actual statement:
create or replacetabletest.test (
id1 integer comment is 'id1',
id2 integer comment is 'id1'
)
;
DbSchema reverse engineered:
CREATE OR REPLACETABLE "TEST"."TEST"(
"ID1"DECIMAL(18,0),
"ID2"DECIMAL(18,0)
);
COMMENT ON TABLE "TEST"."TEST" is ''("ID1" is 'id1',"ID2" is 'id1');
Please check DbSchema Help / Output logs for errors.
No issue, following output:
CREATE OR REPLACETABLE "TEST"."TEST"(
"ID1"DECIMAL(18,0),
"ID2"DECIMAL(18,0)
)
Parsed.
COMMENT ON TABLE "TEST"."TEST" is ''("ID1" is 'id1',"ID2" is 'id1')
Parsed.
Please include the DbSchema version, operating system and used database
DbSchema Version: 9.6.5
OS: Windows
Database: Exasol
The steps to reproduce this issue
Execute the following statement to create a test table and reverse engineer that with DbSchema:
create or replacetabletest.test (
id1 integer comment is 'id1',
id2 integer comment is 'id1'
)
;
The text was updated successfully, but these errors were encountered:
When reverse engineering tables from an existing exasol database, comments are not recognized correctly. The comments on a table are not being recognized, but they are somehow being used as (part of) the comment on the table:
Actual statement:
DbSchema reverse engineered:
No issue, following output:
Please include the DbSchema version, operating system and used database
DbSchema Version: 9.6.5
OS: Windows
Database: Exasol
The steps to reproduce this issue
Execute the following statement to create a test table and reverse engineer that with DbSchema:
The text was updated successfully, but these errors were encountered: