pgdiff
pgdiff copied to clipboard
ENUM values comparison missing
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.
Thank you for the suggestion, @kkontosis. I'll see what I can do on this.