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
MySQL CREATE TABLE statements can include schema elements e.g. indexes that Postgres statements cannot. Currently we simply omit these elements when generating the CREATE TABLE statements for Doltgres tables. But this means that the output of dolt_schema_diff and dolt_patch are incomplete for doltgres.
The simplest solution is probably to converge on the postgres restrictions, so that we emit CREATE TABLE and ALTER TABLE statements that make sense for both dialects.
The text was updated successfully, but these errors were encountered:
MySQL
CREATE TABLE
statements can include schema elements e.g. indexes that Postgres statements cannot. Currently we simply omit these elements when generating theCREATE TABLE
statements for Doltgres tables. But this means that the output ofdolt_schema_diff
anddolt_patch
are incomplete for doltgres.The simplest solution is probably to converge on the postgres restrictions, so that we emit
CREATE TABLE
andALTER TABLE
statements that make sense for both dialects.The text was updated successfully, but these errors were encountered: