1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-09 06:21:09 +03:00

Fix stray double semicolons

Reported-by: John Naylor <john.naylor@enterprisedb.com>
This commit is contained in:
Peter Eisentraut
2021-03-24 20:42:05 +01:00
parent 5173e42892
commit 37c99d304d
2 changed files with 3 additions and 3 deletions

View File

@@ -171,7 +171,7 @@ brin_minmax_consistent(PG_FUNCTION_ARGS)
* break out of the loop as soon as a false return value is obtained.
*/
if (!minmax_consistent_key(bdesc, column, key, colloid))
PG_RETURN_DATUM(false);;
PG_RETURN_DATUM(false);
}
PG_RETURN_DATUM(true);