From: Peter Eisentraut Date: Thu, 29 Dec 2016 17:00:00 +0000 (-0500) Subject: Fix typo in comment X-Git-Tag: REL_10_BETA1~1180 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=db779d941e0a05ea4647455d0b386b38ef58983b;p=postgresql Fix typo in comment --- diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index b0e3f28aea..2f605ce83d 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)