Closed iffyio closed 3 years ago
Currently hammer ignores foreign keys so that e.g the following detects no diff.
from:
CREATE TABLE T2 ( ID INT64, );
to:
CREATE TABLE T2 ( ID INT64, CONSTRAINT FK_T2_ID FOREIGN KEY (ID) REFERENCES T1 (ID) );
expected:
ALTER TABLE T2 ADD CONSTRAINT FK_T2_ID FOREIGN KEY (ID) REFERENCES T1 (ID)
Currently hammer ignores foreign keys so that e.g the following detects no diff.
from:
to:
expected: