Create a local lazy tbl
Useful for testing KQL generation without a remote connection.
tbl_kusto_abstract(df, table_name, ...)
library(dplyr) df <- data.frame(x = 1, y = 2) df <- tbl_kusto_abstract(df, "table1") df %>% summarise(x = sd(x)) %>% show_query()