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.
It would be useful to also find differences between defined ENUM types.
I was running
pgdiffbetween two databases to find differences withALLand 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.