Commit 37c99d30 authored by Peter Eisentraut's avatar Peter Eisentraut

Fix stray double semicolons

Reported-by: default avatarJohn Naylor <john.naylor@enterprisedb.com>
parent 5173e428
...@@ -171,7 +171,7 @@ brin_minmax_consistent(PG_FUNCTION_ARGS) ...@@ -171,7 +171,7 @@ brin_minmax_consistent(PG_FUNCTION_ARGS)
* break out of the loop as soon as a false return value is obtained. * break out of the loop as soon as a false return value is obtained.
*/ */
if (!minmax_consistent_key(bdesc, column, key, colloid)) if (!minmax_consistent_key(bdesc, column, key, colloid))
PG_RETURN_DATUM(false);; PG_RETURN_DATUM(false);
} }
PG_RETURN_DATUM(true); PG_RETURN_DATUM(true);
......
...@@ -3842,7 +3842,7 @@ timestamp_bin(PG_FUNCTION_ARGS) ...@@ -3842,7 +3842,7 @@ timestamp_bin(PG_FUNCTION_ARGS)
stride_usecs = stride->day * USECS_PER_DAY + stride->time; stride_usecs = stride->day * USECS_PER_DAY + stride->time;
tm_diff = timestamp - origin; tm_diff = timestamp - origin;
tm_delta = tm_diff - tm_diff % stride_usecs;; tm_delta = tm_diff - tm_diff % stride_usecs;
result = origin + tm_delta; result = origin + tm_delta;
...@@ -4013,7 +4013,7 @@ timestamptz_bin(PG_FUNCTION_ARGS) ...@@ -4013,7 +4013,7 @@ timestamptz_bin(PG_FUNCTION_ARGS)
stride_usecs = stride->day * USECS_PER_DAY + stride->time; stride_usecs = stride->day * USECS_PER_DAY + stride->time;
tm_diff = timestamp - origin; tm_diff = timestamp - origin;
tm_delta = tm_diff - tm_diff % stride_usecs;; tm_delta = tm_diff - tm_diff % stride_usecs;
result = origin + tm_delta; result = origin + tm_delta;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment