File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1609,8 +1609,8 @@ DROP TABLE cwi_test;
1609
1609
--
1610
1610
CREATE TABLE syscol_table (a INT);
1611
1611
-- System columns cannot be indexed
1612
- CREATE INDEX ON syscolcol_table (ctid);
1613
- ERROR: relation "syscolcol_table" does not exist
1612
+ CREATE INDEX ON syscol_table (ctid);
1613
+ ERROR: index creation on system columns is not supported
1614
1614
-- nor used in expressions
1615
1615
CREATE INDEX ON syscol_table ((ctid >= '(1000,0)'));
1616
1616
ERROR: index creation on system columns is not supported
Original file line number Diff line number Diff line change @@ -610,7 +610,7 @@ DROP TABLE cwi_test;
610
610
CREATE TABLE syscol_table (a INT );
611
611
612
612
-- System columns cannot be indexed
613
- CREATE INDEX ON syscolcol_table (ctid);
613
+ CREATE INDEX ON syscol_table (ctid);
614
614
615
615
-- nor used in expressions
616
616
CREATE INDEX ON syscol_table ((ctid >= ' (1000,0)' ));
You can’t perform that action at this time.
0 commit comments