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 @@ -1600,8 +1600,8 @@ DROP TABLE cwi_test;
1600
1600
--
1601
1601
CREATE TABLE syscol_table (a INT);
1602
1602
-- System columns cannot be indexed
1603
- CREATE INDEX ON syscolcol_table (ctid);
1604
- ERROR: relation "syscolcol_table" does not exist
1603
+ CREATE INDEX ON syscol_table (ctid);
1604
+ ERROR: index creation on system columns is not supported
1605
1605
-- nor used in expressions
1606
1606
CREATE INDEX ON syscol_table ((ctid >= '(1000,0)'));
1607
1607
ERROR: index creation on system columns is not supported
Original file line number Diff line number Diff line change @@ -623,7 +623,7 @@ DROP TABLE cwi_test;
623
623
CREATE TABLE syscol_table (a INT );
624
624
625
625
-- System columns cannot be indexed
626
- CREATE INDEX ON syscolcol_table (ctid);
626
+ CREATE INDEX ON syscol_table (ctid);
627
627
628
628
-- nor used in expressions
629
629
CREATE INDEX ON syscol_table ((ctid >= ' (1000,0)' ));
You can’t perform that action at this time.
0 commit comments