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
{{ message }}
This repository has been archived by the owner on Apr 1, 2023. It is now read-only.
As observed in issue: #270, we didn't validate the foreign key constraint properly in pg session. We need to add the support when creating a table so that we could fail the second table creation for the following example:
As observed in issue: #270, we didn't validate the foreign key constraint properly in pg session. We need to add the support when creating a table so that we could fail the second table creation for the following example:
CREATE TABLE PKTABLE (ptest1 int, ptest2 int, UNIQUE(ptest1, ptest2));
CREATE TABLE FKTABLE_FAIL1 (ftest1 int REFERENCES pktable(ptest1));
The text was updated successfully, but these errors were encountered: