Returns the current partition keys configured for a table, or NULL if the table is not partitioned.
Examples
if (FALSE) { # \dontrun{
db_lake_connect(...)
db_set_partitioning("trade", "imports", c("year", "month"))
db_get_partitioning("trade", "imports")
#> [1] "year" "month"
} # }