Skip to content

v2.0.0(deprecated)

Compare
Choose a tag to compare
@ohadbitt ohadbitt released this 30 Jun 15:34
· 246 commits to master since this release
d95811b

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