Skip to content

Commit 90e91e2

Browse files
committed
pgstattuple: Fix typo partitiond -> partitioned
Pointed out by Michael Paquier
1 parent 3717dc1 commit 90e91e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contrib/pgstattuple/expected/pgstattuple.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ select pgstatginindex('test_partition');
223223
ERROR: relation "test_partition" is not a GIN index
224224
select pgstathashindex('test_partition');
225225
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
227227
create index test_partition_idx on test_partition(a);
228228
create index test_partition_hash_idx on test_partition using hash (a);
229229
WARNING: hash indexes are not WAL-logged and their use is discouraged

contrib/pgstattuple/sql/pgstattuple.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ select pgstatindex('test_partition');
103103
select pgstatginindex('test_partition');
104104
select pgstathashindex('test_partition');
105105

106-
-- an actual index of a partitiond table should work though
106+
-- an actual index of a partitioned table should work though
107107
create index test_partition_idx on test_partition(a);
108108
create index test_partition_hash_idx on test_partition using hash (a);
109109
-- these should work

0 commit comments

Comments
 (0)