我正在尝试使用kusto函数中的摄取代码将记录插入到kusto表中。在运行查询时,我看到了以下错误。在kusto函数中有使用摄取的选项吗?
.create function with (docstring = "test ingest") Insertbackups {
.ingest inline into table backup <|
"test", 2, "Succeeded", 1, 2, 1.1, 3, false
}错误:发生识别错误。令牌:。
发布于 2021-01-29 13:40:06
这是不受支持的。你可以在下面的帖子中找到完整的解释:Not able to have commands in User-Defined functions in Kusto
https://stackoverflow.com/questions/65949224
复制相似问题