Package | Description |
---|---|
com.gpudb | |
com.gpudb.protocol |
Modifier and Type | Method and Description |
---|---|
GetRecordsResponse<T> |
RecordRetriever.getByKey(List<Object> keyValues,
String expression)
Retrieves records with the given key values and filter expression from
the database using a direct-to-rank fast key lookup, if possible, and
falling back to a standard lookup via the head node, if not.
|
GetRecordsResponse<T> |
RecordRetriever.getByKey(List<Object> keyValues,
String expression,
long offset) |
<TResponse> |
GPUdb.getRecords(GetRecordsRequest request)
Retrieves records from a given table, optionally filtered by an
expression and/or sorted by a column.
|
<TResponse> |
GPUdb.getRecords(Object typeDescriptor,
GetRecordsRequest request)
Retrieves records from a given table, optionally filtered by an
expression and/or sorted by a column.
|
<TResponse> |
GPUdb.getRecords(Object typeDescriptor,
String tableName,
long offset,
long limit,
Map<String,String> options)
Retrieves records from a given table, optionally filtered by an
expression and/or sorted by a column.
|
<TResponse> |
GPUdb.getRecords(String tableName,
long offset,
long limit,
Map<String,String> options)
Retrieves records from a given table, optionally filtered by an
expression and/or sorted by a column.
|
Modifier and Type | Method and Description |
---|---|
GetRecordsResponse<T> |
GetRecordsResponse.setData(List<T> data)
If the
encoding was 'binary', then this list contains the binary encoded
records retrieved from the table, otherwise not populated. |
GetRecordsResponse<T> |
GetRecordsResponse.setHasMoreRecords(boolean hasMoreRecords)
Too many records.
|
GetRecordsResponse<T> |
GetRecordsResponse.setInfo(Map<String,String> info)
Additional information.
|
GetRecordsResponse<T> |
GetRecordsResponse.setTableName(String tableName)
Value of
tableName . |
GetRecordsResponse<T> |
GetRecordsResponse.setTotalNumberOfRecords(long totalNumberOfRecords)
Total/Filtered number of records.
|
GetRecordsResponse<T> |
GetRecordsResponse.setTypeName(String typeName) |
GetRecordsResponse<T> |
GetRecordsResponse.setTypeSchema(String typeSchema)
Avro schema of
data or recordsJson |
Copyright © 2025. All rights reserved.