By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
Help with an interesting Postgres question: Why isn't an Index Only Scan used on a partition accessed via the parent table?.
CREATE TABLE
CREATE TYPE
CREATE TABLE
INSERT 0 2
🍎 | 🍓 |
---|---|
1 | 小島南 |
2 | 初川南 |
SELECT 2
ERROR: cannot alter type "🌶" because it is the type of a typed table HINT: Use ALTER ... CASCADE to alter the typed tables too.
CREATE TABLE
ALTER TYPE
🦀 | 🥝 |
---|---|
(1,小島南) | null |
(2,初川南) | null |
SELECT 2
🦀 | 🥝 |
---|
SELECT 0
table_name | is_typed |
---|---|
🍣 | NO |
🥭 | YES |
🍉 | YES |
SELECT 3