v2.0.0(deprecated)
BREAKING CHANGES:
Query:
Results return now in a new class KustoOperationResult
, which implements Iterator<KustoResultSetTable>
, KustoResultSetTable
are the tables returned from the query result each implementing ResultSet
. KustoOperationResult
has different methods - please call KustoOperationResult.getPrimaryResults
to the table with the results data. Call KustoResultSetTable.getData
to get the all the results data as array of arrays.
FEATURES:
A new class called ColumnMapping
can be used to configure mappings inline using ingesionProperties.ingestionMapping
. This is not recommended (better create the mapping on the table and use reference) for production but is nice for development