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
Describe the bug
Postgres unlogged tables are a common optimization trick for transient steps in ETL/ELT jobs. A workaround is of course to remove the UNLOGGED part, but tedious.
Thus this DDL should work:
CREATE UNLOGGED TABLE t1 (
id integer PRIMARY KEY,
data text
);
To Reproduce
Steps to reproduce the behavior:
Go to 'Import from SQL'
Select the above detailed schema file
Click "Import"
See error:
The text was updated successfully, but these errors were encountered:
Describe the bug
Postgres unlogged tables are a common optimization trick for transient steps in ETL/ELT jobs. A workaround is of course to remove the UNLOGGED part, but tedious.
Thus this DDL should work:
To Reproduce
Steps to reproduce the behavior:
The text was updated successfully, but these errors were encountered: