public interface ExecutedQueryResultOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
getColumns(int index)
public abstract ExecutedQueryResult.Column getColumns(int index)The columns in the result set, in order.
repeated .google.cloud.geminidataanalytics.v1beta.ExecutedQueryResult.Column columns = 1;
| Parameter | |
|---|---|
| Name | Description |
index |
int |
| Returns | |
|---|---|
| Type | Description |
ExecutedQueryResult.Column |
|
getColumnsCount()
public abstract int getColumnsCount()The columns in the result set, in order.
repeated .google.cloud.geminidataanalytics.v1beta.ExecutedQueryResult.Column columns = 1;
| Returns | |
|---|---|
| Type | Description |
int |
|
getColumnsList()
public abstract List<ExecutedQueryResult.Column> getColumnsList()The columns in the result set, in order.
repeated .google.cloud.geminidataanalytics.v1beta.ExecutedQueryResult.Column columns = 1;
| Returns | |
|---|---|
| Type | Description |
List<Column> |
|
getColumnsOrBuilder(int index)
public abstract ExecutedQueryResult.ColumnOrBuilder getColumnsOrBuilder(int index)The columns in the result set, in order.
repeated .google.cloud.geminidataanalytics.v1beta.ExecutedQueryResult.Column columns = 1;
| Parameter | |
|---|---|
| Name | Description |
index |
int |
| Returns | |
|---|---|
| Type | Description |
ExecutedQueryResult.ColumnOrBuilder |
|
getColumnsOrBuilderList()
public abstract List<? extends ExecutedQueryResult.ColumnOrBuilder> getColumnsOrBuilderList()The columns in the result set, in order.
repeated .google.cloud.geminidataanalytics.v1beta.ExecutedQueryResult.Column columns = 1;
| Returns | |
|---|---|
| Type | Description |
List<? extends com.google.cloud.geminidataanalytics.v1beta.ExecutedQueryResult.ColumnOrBuilder> |
|
getPartialResult()
public abstract boolean getPartialResult() Set to true if the returned rows in query_result are a subset of the
full result. This can happen, for example, if the query execution hits a
row limit. When true, the query_result does not contain all
rows. To retrieve the complete result, consider using the
generated_query in QueryDataResponse and executing it in your own
environment.
bool partial_result = 4;
| Returns | |
|---|---|
| Type | Description |
boolean |
The partialResult. |
getQueryExecutionError()
public abstract String getQueryExecutionError()The error message if the query execution failed.
string query_execution_error = 5;
| Returns | |
|---|---|
| Type | Description |
String |
The queryExecutionError. |
getQueryExecutionErrorBytes()
public abstract ByteString getQueryExecutionErrorBytes()The error message if the query execution failed.
string query_execution_error = 5;
| Returns | |
|---|---|
| Type | Description |
ByteString |
The bytes for queryExecutionError. |
getRows(int index)
public abstract ExecutedQueryResult.Row getRows(int index)The rows returned by the query.
repeated .google.cloud.geminidataanalytics.v1beta.ExecutedQueryResult.Row rows = 2;
| Parameter | |
|---|---|
| Name | Description |
index |
int |
| Returns | |
|---|---|
| Type | Description |
ExecutedQueryResult.Row |
|
getRowsCount()
public abstract int getRowsCount()The rows returned by the query.
repeated .google.cloud.geminidataanalytics.v1beta.ExecutedQueryResult.Row rows = 2;
| Returns | |
|---|---|
| Type | Description |
int |
|
getRowsList()
public abstract List<ExecutedQueryResult.Row> getRowsList()The rows returned by the query.
repeated .google.cloud.geminidataanalytics.v1beta.ExecutedQueryResult.Row rows = 2;
| Returns | |
|---|---|
| Type | Description |
List<Row> |
|
getRowsOrBuilder(int index)
public abstract ExecutedQueryResult.RowOrBuilder getRowsOrBuilder(int index)The rows returned by the query.
repeated .google.cloud.geminidataanalytics.v1beta.ExecutedQueryResult.Row rows = 2;
| Parameter | |
|---|---|
| Name | Description |
index |
int |
| Returns | |
|---|---|
| Type | Description |
ExecutedQueryResult.RowOrBuilder |
|
getRowsOrBuilderList()
public abstract List<? extends ExecutedQueryResult.RowOrBuilder> getRowsOrBuilderList()The rows returned by the query.
repeated .google.cloud.geminidataanalytics.v1beta.ExecutedQueryResult.Row rows = 2;
| Returns | |
|---|---|
| Type | Description |
List<? extends com.google.cloud.geminidataanalytics.v1beta.ExecutedQueryResult.RowOrBuilder> |
|
getTotalRowCount()
public abstract long getTotalRowCount()The total number of rows in the full result set, if known. This may be an estimate or an exact count.
int64 total_row_count = 3;
| Returns | |
|---|---|
| Type | Description |
long |
The totalRowCount. |