Skip to content

Commit 6f3c628

Browse files
Google APIscopybara-github
authored andcommitted
feat: add documentation for partition value limit
BREAKING CHANGE: make the client library gRPC only PiperOrigin-RevId: 666551276
1 parent 87fc660 commit 6f3c628

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

google/cloud/bigquery/storage/v1alpha/BUILD.bazel

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,18 +80,26 @@ java_gapic_library(
8080
test_deps = [
8181
":storage_java_grpc",
8282
],
83-
transport = "grpc+rest",
83+
transport = "grpc",
8484
deps = [
8585
":storage_java_proto",
8686
"//google/api:api_java_proto",
8787
],
8888
)
8989

90+
java_gapic_test(
91+
name = "storage_java_gapic_test_suite",
92+
test_classes = [
93+
"com.google.cloud.bigquery.storage.v1alpha.MetastorePartitionServiceClientTest",
94+
],
95+
runtime_deps = [":storage_java_gapic_test"],
96+
)
97+
9098
# Open Source Packages
9199
java_gapic_assembly_gradle_pkg(
92100
name = "google-cloud-bigquery-storage-v1alpha-java",
93101
include_samples = True,
94-
transport = "grpc+rest",
102+
transport = "grpc",
95103
deps = [
96104
":storage_java_gapic",
97105
":storage_java_grpc",

google/cloud/bigquery/storage/v1alpha/partition.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ message SerDeInfo {
8282
message MetastorePartition {
8383
// Required. Represents the values of the partition keys, where each value
8484
// corresponds to a specific partition key in the order in which the keys are
85-
// defined.
85+
// defined. Each value is limited to 1024 characters.
8686
repeated string values = 1 [(google.api.field_behavior) = REQUIRED];
8787

8888
// Output only. The creation time of the partition.

0 commit comments

Comments
 (0)