1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-29 10:41:53 +03:00

Remove duplicated words in comments.

David Rowley
This commit is contained in:
Heikki Linnakangas
2015-04-12 10:46:17 +03:00
parent 83aca89f7c
commit a10589a512
4 changed files with 7 additions and 7 deletions

View File

@ -719,7 +719,7 @@ array_position_common(FunctionCallInfo fcinfo)
if (PG_ARGISNULL(1))
{
/* fast return when the array doesn't have have nulls */
/* fast return when the array doesn't have nulls */
if (!array_contains_nulls(array))
PG_RETURN_NULL();
searched_element = (Datum) 0;
@ -871,7 +871,7 @@ array_positions(PG_FUNCTION_ARGS)
if (PG_ARGISNULL(1))
{
/* fast return when the array doesn't have have nulls */
/* fast return when the array doesn't have nulls */
if (!array_contains_nulls(array))
PG_RETURN_DATUM(makeArrayResult(astate, CurrentMemoryContext));
searched_element = (Datum) 0;