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

JSON body streamingingestion policy varies depending on table name?

vplauzon opened this issue · comments

The following:

.alter table mytable policy streamingingestion
{
    "IsEnabled":true
}

has the JSON policy body be in a literal string expression with NameInParent=="streamingingestion". Relatively easy to pickup.

While this (note the db name is explicitely mentioned):

.alter table mydb.mytable policy streamingingestion
{
    "IsEnabled":true
}

has the policy JSON body in a skipped token node? Is that even guaranteed to be a legal policy?

My bad: the samples I used in my tests didn't have the quotes for the JSON payload.

I'm closing this.