use of org.hsqldb_voltpatches.navigator.RowSetNavigatorClient in project voltdb by VoltDB.
the class Result method newSingleColumnResult.
public static Result newSingleColumnResult(ResultMetaData meta) {
Result result = newResult(ResultConstants.DATA);
result.metaData = meta;
result.navigator = new RowSetNavigatorClient();
return result;
}
use of org.hsqldb_voltpatches.navigator.RowSetNavigatorClient in project voltdb by VoltDB.
the class Result method newSessionAttributesResult.
/**
* Result structure used for set/get session attributes
*/
public static Result newSessionAttributesResult() {
Result result = newResult(ResultConstants.DATA);
result.navigator = new RowSetNavigatorClient(1);
result.metaData = sessionAttributesMetaData;
result.navigator.add(new Object[SessionInterface.INFO_LIMIT]);
return result;
}
Aggregations