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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user