eulerto / pgquarrel

pgquarrel compares PostgreSQL database schemas (DDL)
BSD 3-Clause "New" or "Revised" License
389 stars 42 forks source link

Type with enum labels #66

Open grzegorzk opened 5 years ago

grzegorzk commented 5 years ago

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.