From 3059e4956f11623776d6c61228ca7011c7da61e0 Mon Sep 17 00:00:00 2001 From: Mridula Peddada Date: Wed, 18 May 2022 16:15:57 -0400 Subject: [PATCH 01/18] fix: add more native image configurations for Arrow tests --- .../google-cloud-bigquery/reflect-config.json | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/google-cloud-bigquery/src/main/resources/META-INF/native-image/com.google.cloud/google-cloud-bigquery/reflect-config.json b/google-cloud-bigquery/src/main/resources/META-INF/native-image/com.google.cloud/google-cloud-bigquery/reflect-config.json index f2190122d..7c46015ff 100644 --- a/google-cloud-bigquery/src/main/resources/META-INF/native-image/com.google.cloud/google-cloud-bigquery/reflect-config.json +++ b/google-cloud-bigquery/src/main/resources/META-INF/native-image/com.google.cloud/google-cloud-bigquery/reflect-config.json @@ -3,8 +3,41 @@ "name":"io.netty.buffer.AbstractByteBufAllocator", "queryAllDeclaredMethods":true }, + { + "name":"io.netty.util.internal.shaded.org.jctools.queues.MpscArrayQueueConsumerIndexField", + "fields":[{"name":"consumerIndex"}] + }, + { + "name":"io.netty.util.internal.shaded.org.jctools.queues.MpscArrayQueueProducerIndexField", + "fields":[{"name":"producerIndex"}] + }, + { + "name":"io.netty.util.internal.shaded.org.jctools.queues.MpscArrayQueueProducerLimitField", + "fields":[{"name":"producerLimit"}] + }, + { + "name":"java.nio.DirectByteBuffer", + "methods":[{"name":"","parameterTypes":["long","int"] }] + }, { "name":"org.apache.arrow.memory.DefaultAllocationManagerFactory", "fields":[{"name":"FACTORY"}] + }, + { + "name":"org.apache.arrow.vector.types.pojo.ArrowType", + "allDeclaredFields":true, + "queryAllDeclaredMethods":true, + "queryAllDeclaredConstructors":true + }, + { + "name":"org.apache.arrow.vector.types.pojo.ArrowType$Int", + "allDeclaredFields":true, + "queryAllDeclaredMethods":true, + "queryAllDeclaredConstructors":true + }, + { + "name":"org.apache.arrow.vector.types.pojo.ArrowType$PrimitiveType", + "allDeclaredFields":true, + "queryAllDeclaredMethods":true } ] \ No newline at end of file From 1030790e353fa959c03b99b37672428cad09e19a Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Wed, 18 May 2022 20:19:16 +0000 Subject: [PATCH 02/18] =?UTF-8?q?=F0=9F=A6=89=20Updates=20from=20OwlBot=20?= =?UTF-8?q?post-processor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ef43a359a..8f8f9f0d9 100644 --- a/README.md +++ b/README.md @@ -59,13 +59,13 @@ implementation 'com.google.cloud:google-cloud-bigquery' If you are using Gradle without BOM, add this to your dependencies ```Groovy -implementation 'com.google.cloud:google-cloud-bigquery:2.11.1' +implementation 'com.google.cloud:google-cloud-bigquery:2.11.2' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-bigquery" % "2.11.1" +libraryDependencies += "com.google.cloud" % "google-cloud-bigquery" % "2.11.2" ``` ## Authentication From 7502c2d24844942388419d6028dc3eda7d689c17 Mon Sep 17 00:00:00 2001 From: Mridula Peddada Date: Thu, 19 May 2022 10:13:50 -0400 Subject: [PATCH 03/18] add more necessary configurations --- .../google-cloud-bigquery/reflect-config.json | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/google-cloud-bigquery/src/main/resources/META-INF/native-image/com.google.cloud/google-cloud-bigquery/reflect-config.json b/google-cloud-bigquery/src/main/resources/META-INF/native-image/com.google.cloud/google-cloud-bigquery/reflect-config.json index 7c46015ff..8f6d928da 100644 --- a/google-cloud-bigquery/src/main/resources/META-INF/native-image/com.google.cloud/google-cloud-bigquery/reflect-config.json +++ b/google-cloud-bigquery/src/main/resources/META-INF/native-image/com.google.cloud/google-cloud-bigquery/reflect-config.json @@ -3,6 +3,16 @@ "name":"io.netty.buffer.AbstractByteBufAllocator", "queryAllDeclaredMethods":true }, + { + "name":"io.netty.buffer.PooledByteBufAllocator", + "fields":[{"name":"directArenas"}] + }, + { + "name":"io.netty.util.internal.shaded.org.jctools.queues.MpscChunkedArrayQueue", + "queryAllDeclaredMethods":true, + "allDeclaredFields":true, + "queryAllDeclaredConstructors":true + }, { "name":"io.netty.util.internal.shaded.org.jctools.queues.MpscArrayQueueConsumerIndexField", "fields":[{"name":"consumerIndex"}] @@ -39,5 +49,21 @@ "name":"org.apache.arrow.vector.types.pojo.ArrowType$PrimitiveType", "allDeclaredFields":true, "queryAllDeclaredMethods":true + }, + { + "name":"io.netty.buffer.AbstractReferenceCountedByteBuf", + "fields":[{"name":"refCnt"}] + }, + { + "name":"io.netty.util.internal.shaded.org.jctools.queues.BaseMpscLinkedArrayQueueColdProducerFields", + "fields":[{"name":"producerLimit"}] + }, + { + "name":"io.netty.util.internal.shaded.org.jctools.queues.BaseMpscLinkedArrayQueueConsumerFields", + "fields":[{"name":"consumerIndex"}] + }, + { + "name":"io.netty.util.internal.shaded.org.jctools.queues.BaseMpscLinkedArrayQueueProducerFields", + "fields":[{"name":"producerIndex"}] } ] \ No newline at end of file From fde4c0b88351988dfbd5ab944b9541f8e417a458 Mon Sep 17 00:00:00 2001 From: Mridula Peddada Date: Thu, 19 May 2022 10:23:58 -0400 Subject: [PATCH 04/18] enable native image tests --- .kokoro/build.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index 3c45ad23a..1b14f615f 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -80,11 +80,11 @@ nightly-it) verify RETURN_CODE=$? ;; -#graalvm) -# # Run Unit and Integration Tests with Native Image -# mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test -# RETURN_CODE=$? -# ;; +graalvm) + # Run Unit and Integration Tests with Native Image + mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test + RETURN_CODE=$? + ;; samples) SAMPLES_DIR=samples # only run ITs in snapshot/ on presubmit PRs. run ITs in all 3 samples/ subdirectories otherwise. From 463c8529f8ee630d331e69294fac4053cce09374 Mon Sep 17 00:00:00 2001 From: Mridula Peddada Date: Fri, 20 May 2022 10:42:10 -0400 Subject: [PATCH 05/18] empty commit From db501a805b363039a75cf83d42c2d57b2f6b494d Mon Sep 17 00:00:00 2001 From: Mridula Peddada Date: Mon, 23 May 2022 09:48:52 -0400 Subject: [PATCH 06/18] remove exclusion --- owlbot.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/owlbot.py b/owlbot.py index 55f7f4101..38321af39 100644 --- a/owlbot.py +++ b/owlbot.py @@ -21,6 +21,5 @@ '.kokoro/presubmit/samples.cfg', '.kokoro/dependencies.sh', 'codecov.yaml', - 'renovate.json', - '.kokoro/build.sh', + 'renovate.json' ]) \ No newline at end of file From 6cd1d3bf06d00c3fad6e10335c554d3658f665fe Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Mon, 23 May 2022 13:51:04 +0000 Subject: [PATCH 07/18] =?UTF-8?q?=F0=9F=A6=89=20Updates=20from=20OwlBot=20?= =?UTF-8?q?post-processor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --- .kokoro/build.sh | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index 1b14f615f..492951c8a 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -61,7 +61,7 @@ javadoc) integration) mvn -B ${INTEGRATION_TEST_ARGS} \ -ntp \ - -Dtest=ITBigQueryTest \ + -Penable-integration-tests \ -DtrimStackTrace=false \ -Dclirr.skip=true \ -Denforcer.skip=true \ @@ -69,18 +69,12 @@ integration) verify RETURN_CODE=$? ;; -nightly-it) - mvn -B ${INTEGRATION_TEST_ARGS} \ - -ntp \ - -Dtest=ITNightlyBigQueryTest \ - -DtrimStackTrace=false \ - -Dclirr.skip=true \ - -Denforcer.skip=true \ - -fae \ - verify +graalvm) + # Run Unit and Integration Tests with Native Image + mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test RETURN_CODE=$? ;; -graalvm) +graalvm17) # Run Unit and Integration Tests with Native Image mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test RETURN_CODE=$? From b2c67c6a409b52d3e3089f7f4be84266382b874f Mon Sep 17 00:00:00 2001 From: Mridula Peddada Date: Tue, 24 May 2022 16:23:05 -0400 Subject: [PATCH 08/18] exclude arrow tests in java 17 --- .kokoro/build.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index 1b14f615f..0aa6aa926 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -85,6 +85,11 @@ graalvm) mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test RETURN_CODE=$? ;; +graalvm17) + # Run Unit and Integration Tests with Native Image. Skip Arrow tests until https://github.com/googleapis/java-bigquery/issues/2060 is fixed. + mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test "-Dtest=!com.google.cloud.bigquery.it.ITBigQueryTest#testBQResultSetPaginationSlowQuery+testReadAPIConnectionMultiClose+testReadAPIIterationAndOrder, !com.google.cloud.bigquery.it.ITNightlyBigQueryTest#testIterateAndOrder" + RETURN_CODE=$? + ;; samples) SAMPLES_DIR=samples # only run ITs in snapshot/ on presubmit PRs. run ITs in all 3 samples/ subdirectories otherwise. From 7ac06da94f57b953719372e5959d9bc7aa3c8f02 Mon Sep 17 00:00:00 2001 From: Mridula Peddada Date: Tue, 24 May 2022 16:25:54 -0400 Subject: [PATCH 09/18] restore nightly-it --- .kokoro/build.sh | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index 1104039b5..fc30548c3 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -69,12 +69,18 @@ integration) verify RETURN_CODE=$? ;; -graalvm) - # Run Unit and Integration Tests with Native Image - mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test +nightly-it) + mvn -B ${INTEGRATION_TEST_ARGS} \ + -ntp \ + -Dtest=ITNightlyBigQueryTest \ + -DtrimStackTrace=false \ + -Dclirr.skip=true \ + -Denforcer.skip=true \ + -fae \ + verify RETURN_CODE=$? ;; -graalvm17) +graalvm) # Run Unit and Integration Tests with Native Image mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test RETURN_CODE=$? From 2295f7b7422e9e8b969590f317b06152ee4f1609 Mon Sep 17 00:00:00 2001 From: Mridula Peddada Date: Tue, 24 May 2022 16:26:58 -0400 Subject: [PATCH 10/18] restore formatting --- .kokoro/build.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index fc30548c3..6fa3e721a 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -71,13 +71,13 @@ integration) ;; nightly-it) mvn -B ${INTEGRATION_TEST_ARGS} \ - -ntp \ - -Dtest=ITNightlyBigQueryTest \ - -DtrimStackTrace=false \ - -Dclirr.skip=true \ - -Denforcer.skip=true \ - -fae \ - verify + -ntp \ + -Dtest=ITNightlyBigQueryTest \ + -DtrimStackTrace=false \ + -Dclirr.skip=true \ + -Denforcer.skip=true \ + -fae \ + verify RETURN_CODE=$? ;; graalvm) From ca77139dc62af5e8c5b086500263a851d55e60eb Mon Sep 17 00:00:00 2001 From: Mridula Peddada Date: Tue, 24 May 2022 16:28:52 -0400 Subject: [PATCH 11/18] more formatting changes --- .kokoro/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index 6fa3e721a..0aa6aa926 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -61,7 +61,7 @@ javadoc) integration) mvn -B ${INTEGRATION_TEST_ARGS} \ -ntp \ - -Penable-integration-tests \ + -Dtest=ITBigQueryTest \ -DtrimStackTrace=false \ -Dclirr.skip=true \ -Denforcer.skip=true \ From 59e72c0adc5bf757734580d1904c9695679167fb Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Tue, 24 May 2022 20:29:17 +0000 Subject: [PATCH 12/18] =?UTF-8?q?=F0=9F=A6=89=20Updates=20from=20OwlBot=20?= =?UTF-8?q?post-processor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --- .kokoro/build.sh | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index 6fa3e721a..492951c8a 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -69,25 +69,14 @@ integration) verify RETURN_CODE=$? ;; -nightly-it) - mvn -B ${INTEGRATION_TEST_ARGS} \ - -ntp \ - -Dtest=ITNightlyBigQueryTest \ - -DtrimStackTrace=false \ - -Dclirr.skip=true \ - -Denforcer.skip=true \ - -fae \ - verify - RETURN_CODE=$? - ;; graalvm) # Run Unit and Integration Tests with Native Image mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test RETURN_CODE=$? ;; graalvm17) - # Run Unit and Integration Tests with Native Image. Skip Arrow tests until https://github.com/googleapis/java-bigquery/issues/2060 is fixed. - mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test "-Dtest=!com.google.cloud.bigquery.it.ITBigQueryTest#testBQResultSetPaginationSlowQuery+testReadAPIConnectionMultiClose+testReadAPIIterationAndOrder, !com.google.cloud.bigquery.it.ITNightlyBigQueryTest#testIterateAndOrder" + # Run Unit and Integration Tests with Native Image + mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test RETURN_CODE=$? ;; samples) From ead0f3057254fc02038a3c0cc0054edbdde25bce Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Tue, 24 May 2022 20:31:06 +0000 Subject: [PATCH 13/18] =?UTF-8?q?=F0=9F=A6=89=20Updates=20from=20OwlBot=20?= =?UTF-8?q?post-processor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --- .kokoro/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index a68a285e1..492951c8a 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -61,7 +61,7 @@ javadoc) integration) mvn -B ${INTEGRATION_TEST_ARGS} \ -ntp \ - -Dtest=ITBigQueryTest \ + -Penable-integration-tests \ -DtrimStackTrace=false \ -Dclirr.skip=true \ -Denforcer.skip=true \ From ab15abfdea234701ba1379ab3833058cac632ecf Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Tue, 24 May 2022 20:31:27 +0000 Subject: [PATCH 14/18] =?UTF-8?q?=F0=9F=A6=89=20Updates=20from=20OwlBot=20?= =?UTF-8?q?post-processor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --- .kokoro/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index a68a285e1..492951c8a 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -61,7 +61,7 @@ javadoc) integration) mvn -B ${INTEGRATION_TEST_ARGS} \ -ntp \ - -Dtest=ITBigQueryTest \ + -Penable-integration-tests \ -DtrimStackTrace=false \ -Dclirr.skip=true \ -Denforcer.skip=true \ From 8db8fd1915336a30eb94cf8da28c8eb4f1365ccd Mon Sep 17 00:00:00 2001 From: Mridula Peddada Date: Tue, 24 May 2022 16:41:12 -0400 Subject: [PATCH 15/18] include tests for exclusion --- .kokoro/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index 0aa6aa926..45c47f8f7 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -87,7 +87,7 @@ graalvm) ;; graalvm17) # Run Unit and Integration Tests with Native Image. Skip Arrow tests until https://github.com/googleapis/java-bigquery/issues/2060 is fixed. - mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test "-Dtest=!com.google.cloud.bigquery.it.ITBigQueryTest#testBQResultSetPaginationSlowQuery+testReadAPIConnectionMultiClose+testReadAPIIterationAndOrder, !com.google.cloud.bigquery.it.ITNightlyBigQueryTest#testIterateAndOrder" + mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test "-Dtest=!com.google.cloud.bigquery.it.ITBigQueryTest#testBQResultSetPaginationSlowQuery+testReadAPIConnectionMultiClose+testReadAPIIterationAndOrder, !com.google.cloud.bigquery.it.ITNightlyBigQueryTest#testIterateAndOrder+testMultipleRuns+testIterateAndOrderDefaultConnSettings" RETURN_CODE=$? ;; samples) From b87ca45208788cba67aea5c264f9c8ff5e1ff6b3 Mon Sep 17 00:00:00 2001 From: Mridula Peddada Date: Tue, 24 May 2022 16:51:13 -0400 Subject: [PATCH 16/18] restore script changes --- .kokoro/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index 852cbdc07..41d55d351 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -61,7 +61,7 @@ javadoc) integration) mvn -B ${INTEGRATION_TEST_ARGS} \ -ntp \ - -Penable-integration-tests \ + -Dtest=ITBigQueryTest \ -DtrimStackTrace=false \ -Dclirr.skip=true \ -Denforcer.skip=true \ From fc1e5fc518f8c5fbb2353264ba2bb5871923fdd8 Mon Sep 17 00:00:00 2001 From: Mridula Peddada Date: Tue, 24 May 2022 16:53:52 -0400 Subject: [PATCH 17/18] bring back nightly-it --- .kokoro/build.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index 41d55d351..45c47f8f7 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -69,6 +69,17 @@ integration) verify RETURN_CODE=$? ;; +nightly-it) + mvn -B ${INTEGRATION_TEST_ARGS} \ + -ntp \ + -Dtest=ITNightlyBigQueryTest \ + -DtrimStackTrace=false \ + -Dclirr.skip=true \ + -Denforcer.skip=true \ + -fae \ + verify + RETURN_CODE=$? + ;; graalvm) # Run Unit and Integration Tests with Native Image mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test From 62dcfedfc8e3cfe161230fab8c2674b9f30b3947 Mon Sep 17 00:00:00 2001 From: Mridula Peddada Date: Tue, 24 May 2022 18:09:32 -0400 Subject: [PATCH 18/18] include IT* and *ClientTest filter from shared-config --- .kokoro/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index 45c47f8f7..089ca0e23 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -87,7 +87,7 @@ graalvm) ;; graalvm17) # Run Unit and Integration Tests with Native Image. Skip Arrow tests until https://github.com/googleapis/java-bigquery/issues/2060 is fixed. - mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test "-Dtest=!com.google.cloud.bigquery.it.ITBigQueryTest#testBQResultSetPaginationSlowQuery+testReadAPIConnectionMultiClose+testReadAPIIterationAndOrder, !com.google.cloud.bigquery.it.ITNightlyBigQueryTest#testIterateAndOrder+testMultipleRuns+testIterateAndOrderDefaultConnSettings" + mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test "-Dtest=!com.google.cloud.bigquery.it.ITBigQueryTest#testBQResultSetPaginationSlowQuery+testReadAPIConnectionMultiClose+testReadAPIIterationAndOrder, !com.google.cloud.bigquery.it.ITNightlyBigQueryTest#testIterateAndOrder+testMultipleRuns+testIterateAndOrderDefaultConnSettings, IT*, *ClientTest" RETURN_CODE=$? ;; samples)