diff options
author | Peter Eisentraut | 2016-12-29 17:00:00 +0000 |
---|---|---|
committer | Peter Eisentraut | 2016-12-29 16:27:41 +0000 |
commit | db779d941e0a05ea4647455d0b386b38ef58983b (patch) | |
tree | 6f9c5c1551fa4150f00192aef5f2c32bfddca629 /src | |
parent | 27866bd1e88c7b564b42394a0d5b069b015666c4 (diff) |
Fix typo in comment
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/commands/tablecmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index b0e3f28aeab..2f605ce83d5 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -1604,7 +1604,7 @@ MergeAttributes(List *schema, List *supers, char relpersistence, * execute if the user attempts to create a table with hundreds of * thousands of columns. * - * Note that we also need to check that any we do not exceed this figure + * Note that we also need to check that we do not exceed this figure * after including columns from inherited relations. */ if (list_length(schema) > MaxHeapAttributeNumber) |