public class RawExecuteSqlResponse extends Object implements org.apache.avro.generic.IndexedRecord
GPUdb.executeSqlRaw(ExecuteSqlRequest)
.Modifier and Type | Class and Description |
---|---|
static class |
RawExecuteSqlResponse.HasMoreRecords
Too many records.
|
static class |
RawExecuteSqlResponse.Info
Additional information.
|
Constructor and Description |
---|
RawExecuteSqlResponse()
Constructs a RawExecuteSqlResponse object with default parameters.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
Object |
get(int index)
This method supports the Avro framework and is not intended to be called
directly by the user.
|
ByteBuffer |
getBinaryEncodedResponse() |
static org.apache.avro.Schema |
getClassSchema()
This method supports the Avro framework and is not intended to be called
directly by the user.
|
long |
getCountAffected() |
boolean |
getHasMoreRecords() |
Map<String,String> |
getInfo() |
String |
getJsonEncodedResponse() |
String |
getPagingTable() |
String |
getResponseSchemaStr() |
org.apache.avro.Schema |
getSchema()
This method supports the Avro framework and is not intended to be called
directly by the user.
|
long |
getTotalNumberOfRecords() |
int |
hashCode() |
void |
put(int index,
Object value)
This method supports the Avro framework and is not intended to be called
directly by the user.
|
RawExecuteSqlResponse |
setBinaryEncodedResponse(ByteBuffer binaryEncodedResponse) |
RawExecuteSqlResponse |
setCountAffected(long countAffected) |
RawExecuteSqlResponse |
setHasMoreRecords(boolean hasMoreRecords) |
RawExecuteSqlResponse |
setInfo(Map<String,String> info) |
RawExecuteSqlResponse |
setJsonEncodedResponse(String jsonEncodedResponse) |
RawExecuteSqlResponse |
setPagingTable(String pagingTable) |
RawExecuteSqlResponse |
setResponseSchemaStr(String responseSchemaStr) |
RawExecuteSqlResponse |
setTotalNumberOfRecords(long totalNumberOfRecords) |
String |
toString() |
public RawExecuteSqlResponse()
public static org.apache.avro.Schema getClassSchema()
public long getCountAffected()
public RawExecuteSqlResponse setCountAffected(long countAffected)
countAffected
- The number of objects/records affected.this
to mimic the builder pattern.public String getResponseSchemaStr()
binaryEncodedResponse
or jsonEncodedResponse
.public RawExecuteSqlResponse setResponseSchemaStr(String responseSchemaStr)
responseSchemaStr
- Avro schema of binaryEncodedResponse
or jsonEncodedResponse
.this
to mimic the builder pattern.public ByteBuffer getBinaryEncodedResponse()
public RawExecuteSqlResponse setBinaryEncodedResponse(ByteBuffer binaryEncodedResponse)
binaryEncodedResponse
- Avro binary encoded response.this
to mimic the builder pattern.public String getJsonEncodedResponse()
public RawExecuteSqlResponse setJsonEncodedResponse(String jsonEncodedResponse)
jsonEncodedResponse
- Avro JSON encoded response.this
to mimic the builder pattern.public long getTotalNumberOfRecords()
public RawExecuteSqlResponse setTotalNumberOfRecords(long totalNumberOfRecords)
totalNumberOfRecords
- Total/Filtered number of records.this
to mimic the builder pattern.public boolean getHasMoreRecords()
public RawExecuteSqlResponse setHasMoreRecords(boolean hasMoreRecords)
public String getPagingTable()
hasMoreRecords
is true
(Subject to
config.paging_tables_enabled)public RawExecuteSqlResponse setPagingTable(String pagingTable)
pagingTable
- Name of the table that has the result records of the
query. Valid, when hasMoreRecords
is true
(Subject to config.paging_tables_enabled)this
to mimic the builder pattern.public RawExecuteSqlResponse setInfo(Map<String,String> info)
public org.apache.avro.Schema getSchema()
getSchema
in interface org.apache.avro.generic.GenericContainer
public Object get(int index)
get
in interface org.apache.avro.generic.IndexedRecord
index
- the position of the field to getIndexOutOfBoundsException
public void put(int index, Object value)
put
in interface org.apache.avro.generic.IndexedRecord
index
- the position of the field to setvalue
- the value to setIndexOutOfBoundsException
Copyright © 2020. All rights reserved.