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
Replace mode will create target table from input columns.
But it may be different from the original table.
We can create the target table same as the original table with column_options, but the config file will be verbose.
If we can create the target table by CREATE TABLE LIKE ... statement the config file will be simple.
It should be optional because we should maintain compatibility and not all DBMSs support CREATE TABLE LIKE ... statement.
The text was updated successfully, but these errors were encountered:
Replace mode will create target table from input columns.
But it may be different from the original table.
We can create the target table same as the original table with column_options, but the config file will be verbose.
If we can create the target table by
CREATE TABLE LIKE ...
statement the config file will be simple.It should be optional because we should maintain compatibility and not all DBMSs support
CREATE TABLE LIKE ...
statement.The text was updated successfully, but these errors were encountered: