Support table inheritance
Open
feature
- Dominant language
- C
- Stars
- 12.8k
- Forks
- 794
- Avg merge
- 2d 14h
- Merged PRs (30d)
- 31
Description
CREATE TABLE cities (
name text,
population real,
elevation int -- (in ft)
);
CREATE TABLE capitals (
state char(2) UNIQUE NOT NULL
) INHERITS (cities);
SELECT create_reference_table('capitals');
Error message: capitals is not a regular, foreign or partitioned table
Contributor guide
Assessment
This issue has not been assessed yet.