mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-18 18:44:06 +08:00
pgstattuple: Fix typo partitiond -> partitioned
Pointed out by Michael Paquier
This commit is contained in:
parent
3717dc149e
commit
90e91e242f
@ -223,7 +223,7 @@ select pgstatginindex('test_partition');
|
|||||||
ERROR: relation "test_partition" is not a GIN index
|
ERROR: relation "test_partition" is not a GIN index
|
||||||
select pgstathashindex('test_partition');
|
select pgstathashindex('test_partition');
|
||||||
ERROR: "test_partition" is not an index
|
ERROR: "test_partition" is not an index
|
||||||
-- an actual index of a partitiond table should work though
|
-- an actual index of a partitioned table should work though
|
||||||
create index test_partition_idx on test_partition(a);
|
create index test_partition_idx on test_partition(a);
|
||||||
create index test_partition_hash_idx on test_partition using hash (a);
|
create index test_partition_hash_idx on test_partition using hash (a);
|
||||||
WARNING: hash indexes are not WAL-logged and their use is discouraged
|
WARNING: hash indexes are not WAL-logged and their use is discouraged
|
||||||
|
@ -103,7 +103,7 @@ select pgstatindex('test_partition');
|
|||||||
select pgstatginindex('test_partition');
|
select pgstatginindex('test_partition');
|
||||||
select pgstathashindex('test_partition');
|
select pgstathashindex('test_partition');
|
||||||
|
|
||||||
-- an actual index of a partitiond table should work though
|
-- an actual index of a partitioned table should work though
|
||||||
create index test_partition_idx on test_partition(a);
|
create index test_partition_idx on test_partition(a);
|
||||||
create index test_partition_hash_idx on test_partition using hash (a);
|
create index test_partition_hash_idx on test_partition using hash (a);
|
||||||
-- these should work
|
-- these should work
|
||||||
|
Loading…
Reference in New Issue
Block a user