pgquarrel icon indicating copy to clipboard operation
pgquarrel copied to clipboard

Type with enum labels

Open grzegorzk opened this issue 5 years ago • 0 comments

I extended tests and added from-enum-type.sql:

CREATE TYPE public.feature_type AS ENUM (
        'val ''01''',
        'val ''02''',
        'val ''03''',
        'val ''04''',
        'val ''05''',
        'val ''06'''
);

and also added to-enum-type.sql:

CREATE TYPE public.feature_type AS ENUM (
        'val ''01''',
        'val ''02''',
        'val ''03''',
        'val ''04''',
        'val ''05''',
        'val ''07'''
);

Now tests suite fails.

grzegorzk avatar Jun 26 '19 13:06 grzegorzk