mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Fix stray double semicolons
Reported-by: John Naylor <john.naylor@enterprisedb.com>
This commit is contained in:
parent
5173e42892
commit
37c99d304d
@ -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);
|
||||
|
@ -3842,7 +3842,7 @@ timestamp_bin(PG_FUNCTION_ARGS)
|
||||
stride_usecs = stride->day * USECS_PER_DAY + stride->time;
|
||||
|
||||
tm_diff = timestamp - origin;
|
||||
tm_delta = tm_diff - tm_diff % stride_usecs;;
|
||||
tm_delta = tm_diff - tm_diff % stride_usecs;
|
||||
|
||||
result = origin + tm_delta;
|
||||
|
||||
@ -4013,7 +4013,7 @@ timestamptz_bin(PG_FUNCTION_ARGS)
|
||||
stride_usecs = stride->day * USECS_PER_DAY + stride->time;
|
||||
|
||||
tm_diff = timestamp - origin;
|
||||
tm_delta = tm_diff - tm_diff % stride_usecs;;
|
||||
tm_delta = tm_diff - tm_diff % stride_usecs;
|
||||
|
||||
result = origin + tm_delta;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user