microsoft/Kusto-Query-Language

Ingestion mapping: removeOldestIfRequired property

vplauzon opened this issue · 1 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.