我正在尝试将光标传递给这样的函数:
.create-or-alter function GetLatestValues(cursor:string) {
Logs | where cursor_after(cursor)
}
但我得到了Error cursor_after(): argument #1 is invalid
回应。有什么我想念的吗?字符串是否使用了错误的数据类型?
这种方法适用于 lambda 函数:
let GetLatestValues = (cursor:string) {
Logs | where cursor_after(cursor)
};
GetLatestValues('') | take 1