]> granicus.if.org Git - postgresql/commitdiff
pgstattuple: Fix typo partitiond -> partitioned
authorStephen Frost <sfrost@snowman.net>
Fri, 10 Mar 2017 01:06:11 +0000 (20:06 -0500)
committerStephen Frost <sfrost@snowman.net>
Fri, 10 Mar 2017 01:06:11 +0000 (20:06 -0500)
Pointed out by Michael Paquier

contrib/pgstattuple/expected/pgstattuple.out
contrib/pgstattuple/sql/pgstattuple.sql

index 29caf5b52d29cf6035cac89f95d327e5ffe33d9b..baee2bd96ecdbbddbd2dd8d51b5ef2ab2b67a6c2 100644 (file)
@@ -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
index 25a0daa331294db80511c4be8e98bc074ea3fdb8..a8e341e35181e293f697a250805a5fcd2a3af863 100644 (file)
@@ -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