BUG #15500: Cannot set NULL to a field with ENUM type - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #15500: Cannot set NULL to a field with ENUM type
Date
Msg-id 15500-2ebc24774d08db26@postgresql.org
Whole thread Raw
Responses Re: BUG #15500: Cannot set NULL to a field with ENUM type  (Alvaro Herrera <alvherre@2ndquadrant.com>)
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      15500
Logged by:          Ivan Shibkikh
Email address:      ivan.shib@gmail.com
PostgreSQL version: 11.1
Operating system:   Alpine Linux
Description:

1. Created a new type:
> create type day_of_week as enum ('Sunday', 'Monday', 'Tuesday',
'Wednesday', 'Thursday', 'Friday', 'Saturday');

2. Created a new table:
> CREATE TABLE public.schedule
(
    id SERIAL PRIMARY KEY NOT NULL,
    week_day day_of_week DEFAULT NULL,
    minute integer DEFAULT 0,
    hour integer DEFAULT 0
);

3. Insert a new record:
> INSERT INTO "public"."schedule" ("id", "week_day", "minute", "hour")
VALUES (DEFAULT, 'NULL', DEFAULT, DEFAULT);

Result:
[42804] ERROR: column "week_day" is of type day_of_week but expression is of
type character varying
Hint: You will need to rewrite or cast the expression.
Position: 87

Why I cannot set NULL to ENUM field?


pgsql-bugs by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: Usage of pg_waldump
Next
From: Alvaro Herrera
Date:
Subject: Re: BUG #15500: Cannot set NULL to a field with ENUM type