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
It would be useful to also find differences between defined ENUM types.
I was running pgdiff between two databases to find differences with ALL and this is something that was not detected.
For example: CREATE TYPE my_type AS ENUM ('a', 'b');
and CREATE TYPE my_type AS ENUM ('a', 'b', 'c');
Should detect the additional type 'c' in the second database, or at least that the types are different.
The text was updated successfully, but these errors were encountered:
It would be useful to also find differences between defined ENUM types.
I was running
pgdiff
between two databases to find differences withALL
and this is something that was not detected.For example:
CREATE TYPE my_type AS ENUM ('a', 'b');
and
CREATE TYPE my_type AS ENUM ('a', 'b', 'c');
Should detect the additional type 'c' in the second database, or at least that the types are different.
The text was updated successfully, but these errors were encountered: