Skip to content

Commit

Permalink
KE-38231 Revert upgrade guava
Browse files Browse the repository at this point in the history
  • Loading branch information
RolatZhang authored and chenzhx committed Sep 15, 2022
1 parent d48a051 commit b77d030
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@
<!-- org.apache.commons/commons-pool2/-->
<commons-pool2.version>2.6.2</commons-pool2.version>
<datanucleus-core.version>4.1.17</datanucleus-core.version>
<guava.version>30.0-jre</guava.version>
<guava.version>14.0.1</guava.version>
<janino.version>3.0.16</janino.version>
<jersey.version>2.35</jersey.version>
<joda.version>2.10.10</joda.version>
Expand Down Expand Up @@ -3077,7 +3077,7 @@
<include>org.eclipse.jetty:jetty-security</include>
<include>org.eclipse.jetty:jetty-util</include>
<include>org.eclipse.jetty:jetty-server</include>
<include>com.google.guava:*</include>
<include>com.google.guava:guava</include>
<include>org.jpmml:*</include>
</includes>
</artifactSet>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ class IntervalExpressionsSuite extends SparkFunSuite with ExpressionEvalHelper {

Seq(
(Period.ofMonths(2), Int.MaxValue) -> "overflow",
(Period.ofMonths(Int.MinValue), 10d) -> "rounded value is out of range for input",
(Period.ofMonths(Int.MinValue), 10d) -> "not in range",
(Period.ofMonths(-100), Float.NaN) -> "input is infinite or NaN",
(Period.ofMonths(200), Double.PositiveInfinity) -> "input is infinite or NaN",
(Period.ofMonths(-200), Float.NegativeInfinity) -> "input is infinite or NaN"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2024,7 +2024,7 @@ SELECT (INTERVAL '-178956970-8' YEAR TO MONTH) / -1.0D
struct<>
-- !query output
java.lang.ArithmeticException
rounded value is out of range for input 2.147483648E9 and rounding mode HALF_UP
not in range


-- !query
Expand Down Expand Up @@ -2076,7 +2076,7 @@ SELECT (INTERVAL '-106751991 04:00:54.775808' DAY TO SECOND) / -1.0D
struct<>
-- !query output
java.lang.ArithmeticException
rounded value is out of range for input 9.223372036854776E18 and rounding mode HALF_UP
not in range


-- !query
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2013,7 +2013,7 @@ SELECT (INTERVAL '-178956970-8' YEAR TO MONTH) / -1.0D
struct<>
-- !query output
java.lang.ArithmeticException
rounded value is out of range for input 2.147483648E9 and rounding mode HALF_UP
not in range


-- !query
Expand Down Expand Up @@ -2065,7 +2065,7 @@ SELECT (INTERVAL '-106751991 04:00:54.775808' DAY TO SECOND) / -1.0D
struct<>
-- !query output
java.lang.ArithmeticException
rounded value is out of range for input 9.223372036854776E18 and rounding mode HALF_UP
not in range


-- !query
Expand Down

0 comments on commit b77d030

Please sign in to comment.