Created
August 20, 2010 20:31
-
-
Save gregglind/541096 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create table t (f1 int); | |
create table t1 (CHECK (f1 < 100)) INHERITS (t); | |
select 1 into t1; | |
/* gives ERROR: relation "t1" already exists */ | |
/* is this the expected solution? */ | |
insert into t1 (select 1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment