public static interface ReadOptions.TableReadOptionsOrBuilder
extends com.google.protobuf.MessageOrBuilder
| Modifier and Type | Method and Description |
|---|---|
String |
getRowRestriction()
Optional.
|
com.google.protobuf.ByteString |
getRowRestrictionBytes()
Optional.
|
String |
getSelectedFields(int index)
Optional.
|
com.google.protobuf.ByteString |
getSelectedFieldsBytes(int index)
Optional.
|
int |
getSelectedFieldsCount()
Optional.
|
List<String> |
getSelectedFieldsList()
Optional.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneofList<String> getSelectedFieldsList()
Optional. The names of the fields in the table to be returned. If no
field names are specified, then all fields in the table are returned.
Nested fields -- the child elements of a STRUCT field -- can be selected
individually using their fully-qualified names, and will be returned as
record fields containing only the selected nested fields. If a STRUCT
field is specified in the selected fields list, all of the child elements
will be returned.
As an example, consider a table with the following schema:
{
"name": "struct_field",
"type": "RECORD",
"mode": "NULLABLE",
"fields": [
{
"name": "string_field1",
"type": "STRING",
. "mode": "NULLABLE"
},
{
"name": "string_field2",
"type": "STRING",
"mode": "NULLABLE"
}
]
}
Specifying "struct_field" in the selected fields list will result in a
read session schema with the following logical structure:
struct_field {
string_field1
string_field2
}
Specifying "struct_field.string_field1" in the selected fields list will
result in a read session schema with the following logical structure:
struct_field {
string_field1
}
The order of the fields in the read session schema is derived from the
table schema and does not correspond to the order in which the fields are
specified in this list.
repeated string selected_fields = 1;int getSelectedFieldsCount()
Optional. The names of the fields in the table to be returned. If no
field names are specified, then all fields in the table are returned.
Nested fields -- the child elements of a STRUCT field -- can be selected
individually using their fully-qualified names, and will be returned as
record fields containing only the selected nested fields. If a STRUCT
field is specified in the selected fields list, all of the child elements
will be returned.
As an example, consider a table with the following schema:
{
"name": "struct_field",
"type": "RECORD",
"mode": "NULLABLE",
"fields": [
{
"name": "string_field1",
"type": "STRING",
. "mode": "NULLABLE"
},
{
"name": "string_field2",
"type": "STRING",
"mode": "NULLABLE"
}
]
}
Specifying "struct_field" in the selected fields list will result in a
read session schema with the following logical structure:
struct_field {
string_field1
string_field2
}
Specifying "struct_field.string_field1" in the selected fields list will
result in a read session schema with the following logical structure:
struct_field {
string_field1
}
The order of the fields in the read session schema is derived from the
table schema and does not correspond to the order in which the fields are
specified in this list.
repeated string selected_fields = 1;String getSelectedFields(int index)
Optional. The names of the fields in the table to be returned. If no
field names are specified, then all fields in the table are returned.
Nested fields -- the child elements of a STRUCT field -- can be selected
individually using their fully-qualified names, and will be returned as
record fields containing only the selected nested fields. If a STRUCT
field is specified in the selected fields list, all of the child elements
will be returned.
As an example, consider a table with the following schema:
{
"name": "struct_field",
"type": "RECORD",
"mode": "NULLABLE",
"fields": [
{
"name": "string_field1",
"type": "STRING",
. "mode": "NULLABLE"
},
{
"name": "string_field2",
"type": "STRING",
"mode": "NULLABLE"
}
]
}
Specifying "struct_field" in the selected fields list will result in a
read session schema with the following logical structure:
struct_field {
string_field1
string_field2
}
Specifying "struct_field.string_field1" in the selected fields list will
result in a read session schema with the following logical structure:
struct_field {
string_field1
}
The order of the fields in the read session schema is derived from the
table schema and does not correspond to the order in which the fields are
specified in this list.
repeated string selected_fields = 1;index - The index of the element to return.com.google.protobuf.ByteString getSelectedFieldsBytes(int index)
Optional. The names of the fields in the table to be returned. If no
field names are specified, then all fields in the table are returned.
Nested fields -- the child elements of a STRUCT field -- can be selected
individually using their fully-qualified names, and will be returned as
record fields containing only the selected nested fields. If a STRUCT
field is specified in the selected fields list, all of the child elements
will be returned.
As an example, consider a table with the following schema:
{
"name": "struct_field",
"type": "RECORD",
"mode": "NULLABLE",
"fields": [
{
"name": "string_field1",
"type": "STRING",
. "mode": "NULLABLE"
},
{
"name": "string_field2",
"type": "STRING",
"mode": "NULLABLE"
}
]
}
Specifying "struct_field" in the selected fields list will result in a
read session schema with the following logical structure:
struct_field {
string_field1
string_field2
}
Specifying "struct_field.string_field1" in the selected fields list will
result in a read session schema with the following logical structure:
struct_field {
string_field1
}
The order of the fields in the read session schema is derived from the
table schema and does not correspond to the order in which the fields are
specified in this list.
repeated string selected_fields = 1;index - The index of the value to return.String getRowRestriction()
Optional. SQL text filtering statement, similar to a WHERE clause in
a SQL query. Aggregates are not supported.
Examples: "int_field > 5"
"date_field = CAST('2014-9-27' as DATE)"
"nullable_field is not NULL"
"st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
"numeric_field BETWEEN 1.0 AND 5.0"
Restricted to a maximum length for 1 MB.
string row_restriction = 2;com.google.protobuf.ByteString getRowRestrictionBytes()
Optional. SQL text filtering statement, similar to a WHERE clause in
a SQL query. Aggregates are not supported.
Examples: "int_field > 5"
"date_field = CAST('2014-9-27' as DATE)"
"nullable_field is not NULL"
"st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
"numeric_field BETWEEN 1.0 AND 5.0"
Restricted to a maximum length for 1 MB.
string row_restriction = 2;Copyright © 2023 Google LLC. All rights reserved.