diff options
author | Stephen Frost | 2017-03-10 01:06:11 +0000 |
---|---|---|
committer | Stephen Frost | 2017-03-10 01:06:11 +0000 |
commit | 90e91e242fe99582b6d2dc18177e79d99c91695d (patch) | |
tree | 6416b685d33ee62072e268c624d1b04906d42935 | |
parent | 3717dc149ecf44b8be95350a68605ba7299474fd (diff) |
pgstattuple: Fix typo partitiond -> partitioned
Pointed out by Michael Paquier
-rw-r--r-- | contrib/pgstattuple/expected/pgstattuple.out | 2 | ||||
-rw-r--r-- | contrib/pgstattuple/sql/pgstattuple.sql | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pgstattuple/expected/pgstattuple.out b/contrib/pgstattuple/expected/pgstattuple.out index 29caf5b52d..baee2bd96e 100644 --- a/contrib/pgstattuple/expected/pgstattuple.out +++ b/contrib/pgstattuple/expected/pgstattuple.out @@ -223,7 +223,7 @@ select pgstatginindex('test_partition'); ERROR: relation "test_partition" is not a GIN index select pgstathashindex('test_partition'); 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_hash_idx on test_partition using hash (a); WARNING: hash indexes are not WAL-logged and their use is discouraged diff --git a/contrib/pgstattuple/sql/pgstattuple.sql b/contrib/pgstattuple/sql/pgstattuple.sql index 25a0daa331..a8e341e351 100644 --- a/contrib/pgstattuple/sql/pgstattuple.sql +++ b/contrib/pgstattuple/sql/pgstattuple.sql @@ -103,7 +103,7 @@ select pgstatindex('test_partition'); select pgstatginindex('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_hash_idx on test_partition using hash (a); -- these should work |