This is an automated email from the ASF dual-hosted git repository.
ibzib pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new 05a0ae1 [BEAM-10459] Unignore numeric aggregation tests.
new d46cd9e Merge pull request #15517 from ibzib/BEAM-10459
05a0ae1 is described below
commit 05a0ae1836381d34cda1f51e9187cd3b655716fa
Author: Kyle Weaver <[email protected]>
AuthorDate: Wed Sep 15 13:39:12 2021 -0700
[BEAM-10459] Unignore numeric aggregation tests.
These are passing now thanks to PR #15174.
---
.../beam/sdk/extensions/sql/zetasql/ZetaSqlMathFunctionsTest.java | 3 ---
1 file changed, 3 deletions(-)
diff --git
a/sdks/java/extensions/sql/zetasql/src/test/java/org/apache/beam/sdk/extensions/sql/zetasql/ZetaSqlMathFunctionsTest.java
b/sdks/java/extensions/sql/zetasql/src/test/java/org/apache/beam/sdk/extensions/sql/zetasql/ZetaSqlMathFunctionsTest.java
index 830bb84..92e509c 100644
---
a/sdks/java/extensions/sql/zetasql/src/test/java/org/apache/beam/sdk/extensions/sql/zetasql/ZetaSqlMathFunctionsTest.java
+++
b/sdks/java/extensions/sql/zetasql/src/test/java/org/apache/beam/sdk/extensions/sql/zetasql/ZetaSqlMathFunctionsTest.java
@@ -26,7 +26,6 @@ import org.apache.beam.sdk.values.PCollection;
import org.apache.beam.sdk.values.Row;
import org.joda.time.Duration;
import org.junit.Before;
-import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
@@ -1002,7 +1001,6 @@ public class ZetaSqlMathFunctionsTest extends
ZetaSqlTestBase {
}
@Test
- @Ignore("[BEAM-10459] Aggregation functions on NUMERIC is not supported yet")
public void testSumNumeric() {
String sql = "SELECT SUM(numeric_field) FROM table_with_numeric";
@@ -1019,7 +1017,6 @@ public class ZetaSqlMathFunctionsTest extends
ZetaSqlTestBase {
}
@Test
- @Ignore("[BEAM-10459] Aggregation functions on NUMERIC is not supported yet")
public void testAvgNumeric() {
String sql = "SELECT AVG(numeric_field) FROM table_with_numeric";