Unregister tables by name
Description
Unregister tables by name.
Usage
<SQLContext>$unregister(names)
Arguments
names
|
A character vector of table names to unregister. |
Value
Returns the SQLContext object invisibly.
Examples
library("polars")
# Initialise a new SQLContext and register the given tables.
ctx = pl$SQLContext(x = mtcars, y = mtcars, z = mtcars)
ctx$tables()
#> [1] "x" "y" "z"
#> [1] "z"