[CALCITE-2067] RexLiteral cannot represent accurately floating point values, including NaN, Infinity #13663
Triggered via pull request
September 21, 2024 01:48
Status
Cancelled
Total duration
13m 40s
Artifacts
–
main.yml
on: pull_request
Windows (JDK 8)
6m 18s
Windows (JDK 17)
6m 59s
Windows (JDK 21)
6m 19s
Linux (JDK 8, oldest Guava, America/New_York Timezone)
4m 8s
Linux (JDK 8, latest Guava, America/New_York Timezone)
5m 35s
Linux (JDK 11, Pacific/Chatham Timezone)
3m 56s
Linux (JDK 17)
3m 55s
Linux (JDK 21)
5m 57s
Linux (JDK 23)
3m 47s
Linux (JDK 11, Avatica main)
4m 30s
macOS (JDK 21)
10m 20s
ErrorProne (JDK 11, latest Guava)
3m 13s
CheckerFramework (JDK 11)
10m 19s
CheckerFramework (JDK 11, oldest Guava)
10m 18s
Linux (JDK 8) Slow Tests
0s
Druid Tests
6m 7s
Annotations
32 errors and 24 warnings
ErrorProne (JDK 11, latest Guava):
task ':druid:compileJava'#L1
Execution failed for task ':druid:compileJava':
org.gradle.api.internal.tasks.compile.CompilationFailedException: Compilation failed; see the compiler error output for details.
at org.gradle.api.internal.tasks.compile.JdkJavaCompiler.execute(JdkJavaCompiler.java:61)
at org.gradle.api.internal.tasks.compile.JdkJavaCompiler.execute(JdkJavaCompiler.java:41)
at org.gradle.api.internal.tasks.compile.NormalizingJavaCompiler.delegateAndHandleErrors(NormalizingJavaCompiler.java:98)
at org.gradle.api.internal.tasks.compile.NormalizingJavaCompiler.execute(NormalizingJavaCompiler.java:52)
at org.gradle.api.internal.tasks.compile.NormalizingJavaCompiler.execute(NormalizingJavaCompiler.java:38)
at org.gradle.api.internal.tasks.compile.AnnotationProcessorDiscoveringCompiler.execute(AnnotationProcessorDiscoveringCompiler.java:52)
at org.gradle.api.internal.tasks.compile.AnnotationProcessorDiscoveringCompiler.execute(AnnotationProcessorDiscoveringCompiler.java:38)
at org.gradle.api.internal.tasks.compile.ModuleApplicationNameWritingCompiler.execute(ModuleApplicationNameWritingCompiler.java:46)
at org.gradle.api.internal.tasks.compile.ModuleApplicationNameWritingCompiler.execute(ModuleApplicationNameWritingCompiler.java:36)
at org.gradle.jvm.toolchain.internal.DefaultToolchainJavaCompiler.execute(DefaultToolchainJavaCompiler.java:57)
at org.gradle.api.tasks.compile.JavaCompile.lambda$createToolchainCompiler$3(JavaCompile.java:202)
at org.gradle.api.internal.tasks.compile.CleaningJavaCompiler.execute(CleaningJavaCompiler.java:53)
at org.gradle.api.internal.tasks.compile.incremental.IncrementalCompilerFactory.lambda$createRebuildAllCompiler$0(IncrementalCompilerFactory.java:52)
at org.gradle.api.internal.tasks.compile.incremental.SelectiveCompiler.execute(SelectiveCompiler.java:70)
at org.gradle.api.internal.tasks.compile.incremental.SelectiveCompiler.execute(SelectiveCompiler.java:44)
at org.gradle.api.internal.tasks.compile.incremental.IncrementalResultStoringCompiler.execute(IncrementalResultStoringCompiler.java:66)
at org.gradle.api.internal.tasks.compile.incremental.IncrementalResultStoringCompiler.execute(IncrementalResultStoringCompiler.java:52)
at org.gradle.api.internal.tasks.compile.CompileJavaBuildOperationReportingCompiler$1.call(CompileJavaBuildOperationReportingCompiler.java:64)
at org.gradle.api.internal.tasks.compile.CompileJavaBuildOperationReportingCompiler$1.call(CompileJavaBuildOperationReportingCompiler.java:48)
at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:200)
at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:195)
at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66)
at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59)
at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:157)
at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59)
at org.gradle.internal.operations.DefaultBuildOperationRunner.call(DefaultBuildOperationRunner.java:53)
at org.gradle.internal.operations.DefaultBuildOperationExecutor.call(DefaultBuildOperationExecutor.java:73)
at org.gradle.api.internal.tasks.compile.CompileJavaBuildOperationReportingCompiler.execute(CompileJavaBuildOperationReportingCompiler.java:48)
at org.gradle.api.tasks.compile.JavaCompile.performCompilation(JavaCompile.java:220)
at org.gradle.api.tasks.compile.JavaCompile.performIncrementalCompilation(JavaCompile.java:161)
at org.gradle.api.tasks.compile.JavaCompile.compile(JavaCompile.java:146)
at org.gradle.internal.reflect.JavaMethod.invoke(JavaMethod.
|
ErrorProne (JDK 11, latest Guava)
Execution failed for task ':druid:compileJava'.
> Compilation failed; see the compiler error output for details.
|
ErrorProne (JDK 11, latest Guava):
druid/src/main/java/org/apache/calcite/adapter/druid/DruidExpressions.java#L144
[Task :druid:compileJava FAILED] ';' expected
requireNonNull((RexLiteral) rexNode).getValueAs(BigDecimal.class)));
^
|
Linux (JDK 23):
task ':core:autostyleJavaCheck'#L1
Execution failed for task ':core:autostyleJavaCheck':
See 'What went wrong' below
|
Linux (JDK 23)
Execution failed for task ':core:autostyleJavaCheck'.
> The following files have format violations:
core/src/test/java/org/apache/calcite/util/UtilTest.java
@@ -214,67 +214,67 @@
}
@test void testDoubleScientificNotation() {
-····double·d·=·Double.parseDouble("0.001234");␊
+····double·d·=·parseDouble("0.001234");␊
TestUtil.assertEqualsVerbose(
"0.001234E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("0.001");␊
+····d·=·parseDouble("0.001");␊
TestUtil.assertEqualsVerbose(
"0.001E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("-0.001");␊
+····d·=·parseDouble("-0.001");␊
TestUtil.assertEqualsVerbose(
"-0.001E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("1");␊
+····d·=·parseDouble("1");␊
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("-1");␊
+····d·=·parseDouble("-1");␊
TestUtil.assertEqualsVerbose(
"-1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("1.0");␊
+····d·=·parseDouble("1.0");␊
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345");␊
+····d·=·parseDouble("12345");␊
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345.00");␊
+····d·=·parseDouble("12345.00");␊
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345.001");␊
+····d·=·parseDouble("12345.001");␊
TestUtil.assertEqualsVerbose(
"12345.001E0",
Util.toScientificNotation(d));
... (34 more lines that didn't fit)
Run './gradlew autostyleApply' to fix the violations.
|
Linux (JDK 17):
task ':core:autostyleJavaCheck'#L1
Execution failed for task ':core:autostyleJavaCheck':
See 'What went wrong' below
|
Linux (JDK 17)
Execution failed for task ':core:autostyleJavaCheck'.
> The following files have format violations:
core/src/test/java/org/apache/calcite/util/UtilTest.java
@@ -214,67 +214,67 @@
}
@test void testDoubleScientificNotation() {
-····double·d·=·Double.parseDouble("0.001234");␊
+····double·d·=·parseDouble("0.001234");␊
TestUtil.assertEqualsVerbose(
"0.001234E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("0.001");␊
+····d·=·parseDouble("0.001");␊
TestUtil.assertEqualsVerbose(
"0.001E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("-0.001");␊
+····d·=·parseDouble("-0.001");␊
TestUtil.assertEqualsVerbose(
"-0.001E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("1");␊
+····d·=·parseDouble("1");␊
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("-1");␊
+····d·=·parseDouble("-1");␊
TestUtil.assertEqualsVerbose(
"-1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("1.0");␊
+····d·=·parseDouble("1.0");␊
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345");␊
+····d·=·parseDouble("12345");␊
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345.00");␊
+····d·=·parseDouble("12345.00");␊
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345.001");␊
+····d·=·parseDouble("12345.001");␊
TestUtil.assertEqualsVerbose(
"12345.001E0",
Util.toScientificNotation(d));
... (34 more lines that didn't fit)
Run './gradlew autostyleApply' to fix the violations.
|
Linux (JDK 11, Pacific/Chatham Timezone):
task ':core:autostyleJavaCheck'#L1
Execution failed for task ':core:autostyleJavaCheck':
See 'What went wrong' below
|
Linux (JDK 11, Pacific/Chatham Timezone)
Execution failed for task ':core:autostyleJavaCheck'.
> The following files have format violations:
core/src/test/java/org/apache/calcite/util/UtilTest.java
@@ -214,67 +214,67 @@
}
@test void testDoubleScientificNotation() {
-····double·d·=·Double.parseDouble("0.001234");␊
+····double·d·=·parseDouble("0.001234");␊
TestUtil.assertEqualsVerbose(
"0.001234E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("0.001");␊
+····d·=·parseDouble("0.001");␊
TestUtil.assertEqualsVerbose(
"0.001E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("-0.001");␊
+····d·=·parseDouble("-0.001");␊
TestUtil.assertEqualsVerbose(
"-0.001E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("1");␊
+····d·=·parseDouble("1");␊
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("-1");␊
+····d·=·parseDouble("-1");␊
TestUtil.assertEqualsVerbose(
"-1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("1.0");␊
+····d·=·parseDouble("1.0");␊
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345");␊
+····d·=·parseDouble("12345");␊
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345.00");␊
+····d·=·parseDouble("12345.00");␊
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345.001");␊
+····d·=·parseDouble("12345.001");␊
TestUtil.assertEqualsVerbose(
"12345.001E0",
Util.toScientificNotation(d));
... (34 more lines that didn't fit)
Run './gradlew autostyleApply' to fix the violations.
|
Linux (JDK 8, oldest Guava, America/New_York Timezone):
task ':core:autostyleJavaCheck'#L1
Execution failed for task ':core:autostyleJavaCheck':
See 'What went wrong' below
|
Linux (JDK 8, oldest Guava, America/New_York Timezone)
Execution failed for task ':core:autostyleJavaCheck'.
> The following files have format violations:
core/src/test/java/org/apache/calcite/util/UtilTest.java
@@ -214,67 +214,67 @@
}
@test void testDoubleScientificNotation() {
-····double·d·=·Double.parseDouble("0.001234");␊
+····double·d·=·parseDouble("0.001234");␊
TestUtil.assertEqualsVerbose(
"0.001234E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("0.001");␊
+····d·=·parseDouble("0.001");␊
TestUtil.assertEqualsVerbose(
"0.001E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("-0.001");␊
+····d·=·parseDouble("-0.001");␊
TestUtil.assertEqualsVerbose(
"-0.001E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("1");␊
+····d·=·parseDouble("1");␊
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("-1");␊
+····d·=·parseDouble("-1");␊
TestUtil.assertEqualsVerbose(
"-1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("1.0");␊
+····d·=·parseDouble("1.0");␊
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345");␊
+····d·=·parseDouble("12345");␊
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345.00");␊
+····d·=·parseDouble("12345.00");␊
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345.001");␊
+····d·=·parseDouble("12345.001");␊
TestUtil.assertEqualsVerbose(
"12345.001E0",
Util.toScientificNotation(d));
... (34 more lines that didn't fit)
Run './gradlew autostyleApply' to fix the violations.
|
Linux (JDK 11, Avatica main):
task ':core:autostyleJavaCheck'#L1
Execution failed for task ':core:autostyleJavaCheck':
See 'What went wrong' below
|
Linux (JDK 11, Avatica main)
Execution failed for task ':core:autostyleJavaCheck'.
> The following files have format violations:
core/src/test/java/org/apache/calcite/util/UtilTest.java
@@ -214,67 +214,67 @@
}
@test void testDoubleScientificNotation() {
-····double·d·=·Double.parseDouble("0.001234");␊
+····double·d·=·parseDouble("0.001234");␊
TestUtil.assertEqualsVerbose(
"0.001234E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("0.001");␊
+····d·=·parseDouble("0.001");␊
TestUtil.assertEqualsVerbose(
"0.001E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("-0.001");␊
+····d·=·parseDouble("-0.001");␊
TestUtil.assertEqualsVerbose(
"-0.001E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("1");␊
+····d·=·parseDouble("1");␊
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("-1");␊
+····d·=·parseDouble("-1");␊
TestUtil.assertEqualsVerbose(
"-1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("1.0");␊
+····d·=·parseDouble("1.0");␊
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345");␊
+····d·=·parseDouble("12345");␊
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345.00");␊
+····d·=·parseDouble("12345.00");␊
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345.001");␊
+····d·=·parseDouble("12345.001");␊
TestUtil.assertEqualsVerbose(
"12345.001E0",
Util.toScientificNotation(d));
... (34 more lines that didn't fit)
Run './gradlew autostyleApply' to fix the violations.
|
Linux (JDK 8, latest Guava, America/New_York Timezone):
task ':core:autostyleJavaCheck'#L1
Execution failed for task ':core:autostyleJavaCheck':
See 'What went wrong' below
|
Linux (JDK 8, latest Guava, America/New_York Timezone)
Execution failed for task ':core:autostyleJavaCheck'.
> The following files have format violations:
core/src/test/java/org/apache/calcite/util/UtilTest.java
@@ -214,67 +214,67 @@
}
@test void testDoubleScientificNotation() {
-····double·d·=·Double.parseDouble("0.001234");␊
+····double·d·=·parseDouble("0.001234");␊
TestUtil.assertEqualsVerbose(
"0.001234E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("0.001");␊
+····d·=·parseDouble("0.001");␊
TestUtil.assertEqualsVerbose(
"0.001E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("-0.001");␊
+····d·=·parseDouble("-0.001");␊
TestUtil.assertEqualsVerbose(
"-0.001E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("1");␊
+····d·=·parseDouble("1");␊
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("-1");␊
+····d·=·parseDouble("-1");␊
TestUtil.assertEqualsVerbose(
"-1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("1.0");␊
+····d·=·parseDouble("1.0");␊
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345");␊
+····d·=·parseDouble("12345");␊
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345.00");␊
+····d·=·parseDouble("12345.00");␊
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345.001");␊
+····d·=·parseDouble("12345.001");␊
TestUtil.assertEqualsVerbose(
"12345.001E0",
Util.toScientificNotation(d));
... (34 more lines that didn't fit)
Run './gradlew autostyleApply' to fix the violations.
|
Linux (JDK 21):
task ':core:autostyleJavaCheck'#L1
Execution failed for task ':core:autostyleJavaCheck':
See 'What went wrong' below
|
Linux (JDK 21)
Execution failed for task ':core:autostyleJavaCheck'.
> The following files have format violations:
core/src/test/java/org/apache/calcite/util/UtilTest.java
@@ -214,67 +214,67 @@
}
@test void testDoubleScientificNotation() {
-····double·d·=·Double.parseDouble("0.001234");␊
+····double·d·=·parseDouble("0.001234");␊
TestUtil.assertEqualsVerbose(
"0.001234E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("0.001");␊
+····d·=·parseDouble("0.001");␊
TestUtil.assertEqualsVerbose(
"0.001E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("-0.001");␊
+····d·=·parseDouble("-0.001");␊
TestUtil.assertEqualsVerbose(
"-0.001E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("1");␊
+····d·=·parseDouble("1");␊
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("-1");␊
+····d·=·parseDouble("-1");␊
TestUtil.assertEqualsVerbose(
"-1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("1.0");␊
+····d·=·parseDouble("1.0");␊
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345");␊
+····d·=·parseDouble("12345");␊
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345.00");␊
+····d·=·parseDouble("12345.00");␊
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
-····d·=·Double.parseDouble("12345.001");␊
+····d·=·parseDouble("12345.001");␊
TestUtil.assertEqualsVerbose(
"12345.001E0",
Util.toScientificNotation(d));
... (34 more lines that didn't fit)
Run './gradlew autostyleApply' to fix the violations.
|
Druid Tests:
task ':druid:compileJava'#L1
Execution failed for task ':druid:compileJava':
org.gradle.api.internal.tasks.compile.CompilationFailedException: Compilation failed; see the compiler error output for details.
at org.gradle.api.internal.tasks.compile.JdkJavaCompiler.execute(JdkJavaCompiler.java:61)
at org.gradle.api.internal.tasks.compile.JdkJavaCompiler.execute(JdkJavaCompiler.java:41)
at org.gradle.api.internal.tasks.compile.NormalizingJavaCompiler.delegateAndHandleErrors(NormalizingJavaCompiler.java:98)
at org.gradle.api.internal.tasks.compile.NormalizingJavaCompiler.execute(NormalizingJavaCompiler.java:52)
at org.gradle.api.internal.tasks.compile.NormalizingJavaCompiler.execute(NormalizingJavaCompiler.java:38)
at org.gradle.api.internal.tasks.compile.AnnotationProcessorDiscoveringCompiler.execute(AnnotationProcessorDiscoveringCompiler.java:52)
at org.gradle.api.internal.tasks.compile.AnnotationProcessorDiscoveringCompiler.execute(AnnotationProcessorDiscoveringCompiler.java:38)
at org.gradle.api.internal.tasks.compile.ModuleApplicationNameWritingCompiler.execute(ModuleApplicationNameWritingCompiler.java:46)
at org.gradle.api.internal.tasks.compile.ModuleApplicationNameWritingCompiler.execute(ModuleApplicationNameWritingCompiler.java:36)
at org.gradle.jvm.toolchain.internal.DefaultToolchainJavaCompiler.execute(DefaultToolchainJavaCompiler.java:57)
at org.gradle.api.tasks.compile.JavaCompile.lambda$createToolchainCompiler$3(JavaCompile.java:202)
at org.gradle.api.internal.tasks.compile.CleaningJavaCompiler.execute(CleaningJavaCompiler.java:53)
at org.gradle.api.internal.tasks.compile.incremental.IncrementalCompilerFactory.lambda$createRebuildAllCompiler$0(IncrementalCompilerFactory.java:52)
at org.gradle.api.internal.tasks.compile.incremental.SelectiveCompiler.execute(SelectiveCompiler.java:70)
at org.gradle.api.internal.tasks.compile.incremental.SelectiveCompiler.execute(SelectiveCompiler.java:44)
at org.gradle.api.internal.tasks.compile.incremental.IncrementalResultStoringCompiler.execute(IncrementalResultStoringCompiler.java:66)
at org.gradle.api.internal.tasks.compile.incremental.IncrementalResultStoringCompiler.execute(IncrementalResultStoringCompiler.java:52)
at org.gradle.api.internal.tasks.compile.CompileJavaBuildOperationReportingCompiler$1.call(CompileJavaBuildOperationReportingCompiler.java:64)
at org.gradle.api.internal.tasks.compile.CompileJavaBuildOperationReportingCompiler$1.call(CompileJavaBuildOperationReportingCompiler.java:48)
at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:200)
at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:195)
at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66)
at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59)
at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:157)
at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59)
at org.gradle.internal.operations.DefaultBuildOperationRunner.call(DefaultBuildOperationRunner.java:53)
at org.gradle.internal.operations.DefaultBuildOperationExecutor.call(DefaultBuildOperationExecutor.java:73)
at org.gradle.api.internal.tasks.compile.CompileJavaBuildOperationReportingCompiler.execute(CompileJavaBuildOperationReportingCompiler.java:48)
at org.gradle.api.tasks.compile.JavaCompile.performCompilation(JavaCompile.java:220)
at org.gradle.api.tasks.compile.JavaCompile.performIncrementalCompilation(JavaCompile.java:161)
at org.gradle.api.tasks.compile.JavaCompile.compile(JavaCompile.java:146)
at org.gradle.internal.reflect.JavaMethod.invoke(JavaMethod.
|
Druid Tests
Execution failed for task ':druid:compileJava'.
> Compilation failed; see the compiler error output for details.
|
Druid Tests:
druid/src/main/java/org/apache/calcite/adapter/druid/DruidExpressions.java#L144
[Task :druid:compileJava FAILED] ';' expected
requireNonNull((RexLiteral) rexNode).getValueAs(BigDecimal.class)));
^
|
Windows (JDK 21):
task ':core:autostyleJavaCheck'#L1
Execution failed for task ':core:autostyleJavaCheck':
See 'What went wrong' below
|
Windows (JDK 21)
Execution failed for task ':core:autostyleJavaCheck'.
> The following files have format violations:
core\src\test\java\org\apache\calcite\util\UtilTest.java
@@ -214,67 +214,67 @@
}
@test void testDoubleScientificNotation() {
- double d = Double.parseDouble("0.001234");\r\n
+ double d = parseDouble("0.001234");\r\n
TestUtil.assertEqualsVerbose(
"0.001234E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("0.001");\r\n
+ d = parseDouble("0.001");\r\n
TestUtil.assertEqualsVerbose(
"0.001E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("-0.001");\r\n
+ d = parseDouble("-0.001");\r\n
TestUtil.assertEqualsVerbose(
"-0.001E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("1");\r\n
+ d = parseDouble("1");\r\n
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("-1");\r\n
+ d = parseDouble("-1");\r\n
TestUtil.assertEqualsVerbose(
"-1.0E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("1.0");\r\n
+ d = parseDouble("1.0");\r\n
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("12345");\r\n
+ d = parseDouble("12345");\r\n
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("12345.00");\r\n
+ d = parseDouble("12345.00");\r\n
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("12345.001");\r\n
+ d = parseDouble("12345.001");\r\n
TestUtil.assertEqualsVerbose(
"12345.001E0",
Util.toScientificNotation(d));
... (34 more lines that didn't fit)
Run './gradlew autostyleApply' to fix the violations.
|
Windows (JDK 8):
task ':core:autostyleJavaCheck'#L1
Execution failed for task ':core:autostyleJavaCheck':
See 'What went wrong' below
|
Windows (JDK 8)
Execution failed for task ':core:autostyleJavaCheck'.
> The following files have format violations:
core\src\test\java\org\apache\calcite\util\UtilTest.java
@@ -214,67 +214,67 @@
}
@test void testDoubleScientificNotation() {
- double d = Double.parseDouble("0.001234");\r\n
+ double d = parseDouble("0.001234");\r\n
TestUtil.assertEqualsVerbose(
"0.001234E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("0.001");\r\n
+ d = parseDouble("0.001");\r\n
TestUtil.assertEqualsVerbose(
"0.001E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("-0.001");\r\n
+ d = parseDouble("-0.001");\r\n
TestUtil.assertEqualsVerbose(
"-0.001E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("1");\r\n
+ d = parseDouble("1");\r\n
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("-1");\r\n
+ d = parseDouble("-1");\r\n
TestUtil.assertEqualsVerbose(
"-1.0E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("1.0");\r\n
+ d = parseDouble("1.0");\r\n
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("12345");\r\n
+ d = parseDouble("12345");\r\n
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("12345.00");\r\n
+ d = parseDouble("12345.00");\r\n
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("12345.001");\r\n
+ d = parseDouble("12345.001");\r\n
TestUtil.assertEqualsVerbose(
"12345.001E0",
Util.toScientificNotation(d));
... (34 more lines that didn't fit)
Run './gradlew autostyleApply' to fix the violations.
|
Windows (JDK 17):
task ':core:autostyleJavaCheck'#L1
Execution failed for task ':core:autostyleJavaCheck':
See 'What went wrong' below
|
Windows (JDK 17)
Execution failed for task ':core:autostyleJavaCheck'.
> The following files have format violations:
core\src\test\java\org\apache\calcite\util\UtilTest.java
@@ -214,67 +214,67 @@
}
@test void testDoubleScientificNotation() {
- double d = Double.parseDouble("0.001234");\r\n
+ double d = parseDouble("0.001234");\r\n
TestUtil.assertEqualsVerbose(
"0.001234E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("0.001");\r\n
+ d = parseDouble("0.001");\r\n
TestUtil.assertEqualsVerbose(
"0.001E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("-0.001");\r\n
+ d = parseDouble("-0.001");\r\n
TestUtil.assertEqualsVerbose(
"-0.001E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("1");\r\n
+ d = parseDouble("1");\r\n
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("-1");\r\n
+ d = parseDouble("-1");\r\n
TestUtil.assertEqualsVerbose(
"-1.0E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("1.0");\r\n
+ d = parseDouble("1.0");\r\n
TestUtil.assertEqualsVerbose(
"1.0E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("12345");\r\n
+ d = parseDouble("12345");\r\n
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("12345.00");\r\n
+ d = parseDouble("12345.00");\r\n
TestUtil.assertEqualsVerbose(
"12345.0E0",
Util.toScientificNotation(d));
- d = Double.parseDouble("12345.001");\r\n
+ d = parseDouble("12345.001");\r\n
TestUtil.assertEqualsVerbose(
"12345.001E0",
Util.toScientificNotation(d));
... (34 more lines that didn't fit)
Run './gradlew autostyleApply' to fix the violations.
|
CheckerFramework (JDK 11, oldest Guava)
Canceling since a higher priority waiting request for 'ci-main-refs/pull/3663/merge' exists
|
CheckerFramework (JDK 11, oldest Guava)
The operation was canceled.
|
macOS (JDK 21)
Canceling since a higher priority waiting request for 'ci-main-refs/pull/3663/merge' exists
|
macOS (JDK 21)
The operation was canceled.
|
CheckerFramework (JDK 11)
Canceling since a higher priority waiting request for 'ci-main-refs/pull/3663/merge' exists
|
CheckerFramework (JDK 11)
The operation was canceled.
|
ErrorProne (JDK 11, latest Guava)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/setup-java@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
ErrorProne (JDK 11, latest Guava)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-java@v2, burrunan/gradle-cache-action@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Linux (JDK 23)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/setup-java@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Linux (JDK 23)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-java@v2, burrunan/gradle-cache-action@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Linux (JDK 17)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/setup-java@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Linux (JDK 17)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-java@v2, burrunan/gradle-cache-action@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Linux (JDK 11, Pacific/Chatham Timezone)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/setup-java@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Linux (JDK 11, Pacific/Chatham Timezone)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-java@v2, burrunan/gradle-cache-action@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Linux (JDK 8, oldest Guava, America/New_York Timezone)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/setup-java@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Linux (JDK 8, oldest Guava, America/New_York Timezone)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-java@v2, burrunan/gradle-cache-action@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Linux (JDK 11, Avatica main)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/setup-java@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Linux (JDK 11, Avatica main)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/setup-java@v2, burrunan/gradle-cache-action@v1, actions/checkout@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Linux (JDK 8, latest Guava, America/New_York Timezone)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/setup-java@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Linux (JDK 8, latest Guava, America/New_York Timezone)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-java@v2, burrunan/gradle-cache-action@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Linux (JDK 21)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/setup-java@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Linux (JDK 21)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-java@v2, burrunan/gradle-cache-action@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Druid Tests
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/setup-java@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Druid Tests
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/setup-java@v2, actions/checkout@v3, burrunan/gradle-cache-action@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Windows (JDK 21)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/setup-java@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Windows (JDK 21)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-java@v2, burrunan/gradle-cache-action@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Windows (JDK 8)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/setup-java@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Windows (JDK 8)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-java@v2, burrunan/gradle-cache-action@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Windows (JDK 17)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/setup-java@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Windows (JDK 17)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-java@v2, burrunan/gradle-cache-action@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|