Skip to content

Commit ff20e13

Browse files
LiBrian415jaystarshot
authored andcommitted
lint
1 parent 9bf42cb commit ff20e13

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

presto-main/src/main/java/com/facebook/presto/type/IntervalDayTimeOperators.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,8 @@ public static long divideByDouble(@SqlType(StandardTypes.INTERVAL_DAY_TO_SECOND)
141141

142142
try {
143143
return multiplyByDouble(left, 1.0 / right);
144-
} catch (PrestoException e) {
144+
}
145+
catch (PrestoException e) {
145146
throw new PrestoException(NUMERIC_VALUE_OUT_OF_RANGE, format("interval_day_to_second division overflow: %s ms / %s", left, right));
146147
}
147148
}

0 commit comments

Comments
 (0)