Closed ckunki closed 2 years ago
How should PushDownRequest
inform about whether the json actually contained an entry "selectListDataTypes" or not?
boolean hasSelectListDataTypes()
Data type DECIMAL
has two properties precision
and scale
, reflected by method DataType.createDecimal(final int precision, final int scale)
.
If these properties are missing in JSON to parse PushDownRequest from: should the parser provide default value(s)? E.g. call DataType.createDecimal(-1, -1)
?
Exasol version 8 and higher provide expected data types for result set as additional JSON content.
This enables JDBC-based virtual schema adapters to
The current ticket therefore requests to evaluate the additional elements from json and transfer them into internal Pojos.