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 was archived by the owner on Jul 13, 2020. It is now read-only.
in database 1: create table a(id integer primary key);
in database 2: `create table a(id integer primary key check (id > 0));'
compare 1 and 2
expected behavior: alter table a add constraint a_id_check check (id > 0); is included in the output, under -- TABLES AND COLUMNS
actual behavior: the -- TABLES AND COLUMNS section is empty (not -- tables and columns match)