Allow deleting enumerated values from an existing enumerated data type
Данил Столповских <danil.stolpovskikh@gmail.com>
From: Данил Столповских <danil.stolpovskikh@gmail.com>
To: pgsql-hackers@postgresql.org
Cc: o.tselebrovskiy@postgrespro.ru, d.frolov@postgrespro.ru
Date: 2023-09-28T12:13:29Z
Lists: pgsql-hackers
Attachments
- enum_drop_value.patch (text/x-patch) patch
Greetings, everyone! I would like to offer my patch on the problem of removing values from enums It adds support for expression ALTER TYPE <enum_name> DROP VALUE <value_name> Added: 1. expression in grammar 2. function to drop enum values 3. regression tests 4. documentation
Commits
-
Add some notes about why "ALTER TYPE enum DROP VALUE" is hard.
- af3ee8a086ca 17.0 landed