microsoft / Kusto-Query-Language

Kusto Query Language is a simple and productive language for querying Big Data.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ingestion mapping: removeOldestIfRequired property

vplauzon opened this issue · comments

The following KQL command is now legal:

.create-or-alter table T ingestion csv mapping 'my-mapping' '[{"Properties":{"Ordinal":"0"},"column":"PreciseTimeStamp","datatype":""}]' with (removeOldestIfRequired=False)

Currently the parser puts everything after the the mapping name in "skipped tokens", including the removeOldestIfRequired property.

It is therefore quite convoluted to grab the property value.

This is fixed in the next published version.