File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ select pgstatginindex('test_partition');
223
223
ERROR: relation "test_partition" is not a GIN index
224
224
select pgstathashindex('test_partition');
225
225
ERROR: "test_partition" is not an index
226
- -- an actual index of a partitiond table should work though
226
+ -- an actual index of a partitioned table should work though
227
227
create index test_partition_idx on test_partition(a);
228
228
create index test_partition_hash_idx on test_partition using hash (a);
229
229
WARNING: hash indexes are not WAL-logged and their use is discouraged
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ select pgstatindex('test_partition');
103
103
select pgstatginindex(' test_partition' );
104
104
select pgstathashindex(' test_partition' );
105
105
106
- -- an actual index of a partitiond table should work though
106
+ -- an actual index of a partitioned table should work though
107
107
create index test_partition_idx on test_partition(a);
108
108
create index test_partition_hash_idx on test_partition using hash (a);
109
109
-- these should work
You can’t perform that action at this time.
0 commit comments