[
https://issues.apache.org/jira/browse/CALCITE-5477?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Gian Merlino updated CALCITE-5477:
----------------------------------
Description:
Related to CALCITE-5428.
Preconditions.checkArgument gained new overloads in Guava 20.0, which prevents
code built using Guava 20.0 from running properly with earlier versions of
Guava. (When building against a later version of Guava, as Calcite does by
default, the Java compiler generates calls to methods that don't exist in those
earlier versions.)
Example: in Guava 20.0 there is {{checkArgument(boolean, String, int)}}; in
earlier versions this would be handled by {{checkArgument(boolean, String,
Object...)}}.
was:
Related to CALCITE-5428.
Preconditions.checkArgument gained new overloads in Guava 20.0, which prevents
code built using Guava 20.0 from running properly with earlier versions of
Guava. (When building against a later version of Guava, as Calcite does by
default, the Java compiler generates calls to methods that don't exist in those
earlier versions.)
Example: in Guava 20.0 there is {{checkArgument(String, Object, int)}}; in
earlier versions this would be handled by {{checkArgument(String, Object,
Object...)}}.
> Prefer Util.checkArgument over Preconditions.checkArgument
> ----------------------------------------------------------
>
> Key: CALCITE-5477
> URL: https://issues.apache.org/jira/browse/CALCITE-5477
> Project: Calcite
> Issue Type: Improvement
> Reporter: Gian Merlino
> Priority: Major
> Labels: pull-request-available
> Time Spent: 20m
> Remaining Estimate: 0h
>
> Related to CALCITE-5428.
> Preconditions.checkArgument gained new overloads in Guava 20.0, which
> prevents code built using Guava 20.0 from running properly with earlier
> versions of Guava. (When building against a later version of Guava, as
> Calcite does by default, the Java compiler generates calls to methods that
> don't exist in those earlier versions.)
> Example: in Guava 20.0 there is {{checkArgument(boolean, String, int)}}; in
> earlier versions this would be handled by {{checkArgument(boolean, String,
> Object...)}}.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)