Skip to content

Commit 52356aa

Browse files
Merge branch 'itn-test-failures' into bq-aggns
2 parents 59108d9 + 7f760e6 commit 52356aa

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

integration-test-remote/src/test/java/io/cdap/cdap/app/etl/gcp/DataprocETLTestBase.java

+1
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ private void createProfile(String profileName) throws Exception {
162162
properties.add(ofProperty("stackdriverLoggingEnabled", "true"));
163163
properties.add(ofProperty("stackdriverMonitoringEnabled", "true"));
164164
properties.add(ofProperty("idleTTL", "60"));
165+
properties.add(ofProperty("imageVersion", "2.0.25-debian10"));
165166

166167
JsonObject provisioner = new JsonObject();
167168
provisioner.addProperty("name", "gcp-dataproc");

integration-test-remote/src/test/java/io/cdap/cdap/app/etl/gcp/GoogleBigQuerySQLEngineTest.java

+5
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
import org.apache.avro.generic.GenericRecord;
6666
import org.apache.avro.generic.GenericRecordBuilder;
6767
import org.apache.avro.io.DatumReader;
68+
import org.apache.parquet.Strings;
6869
import org.junit.Assert;
6970
import org.junit.Test;
7071
import org.junit.experimental.categories.Category;
@@ -179,6 +180,7 @@ public void testSQLEngineJoinSpark() throws Exception {
179180
testSQLEngineJoin(Engine.SPARK, true);
180181
}
181182

183+
182184
@Category({
183185
RequiresSpark.class
184186
})
@@ -307,6 +309,9 @@ private void testSQLEngineDeduplicate(Engine engine, boolean useConnection) thro
307309
Assert.assertEquals(expected, readOutput(serviceManager, DEDUPLICATE_SINK, DedupAggregatorTest.USER_SCHEMA));
308310
}
309311

312+
return new ImmutableMap.Builder<String, String>().putAll(props).build();
313+
}
314+
310315
private void testSQLEngineJoin(Engine engine, boolean useConnection) throws Exception {
311316
String filmDatasetName = "film-sqlenginejoinertest";
312317
String filmCategoryDatasetName = "film-category-sqlenginejoinertest";

0 commit comments

Comments
 (0)