Skip to content

List registered tables

Source code

Description

Return a character vector of the registered table names.

Usage

<SQLContext>$tables()

Value

A character vector of the registered table names.

Examples

library(polars)


ctx = pl$SQLContext()
ctx$tables()
#> character(0)
ctx$register("df1", mtcars)
ctx$tables()
#> [1] "df1"
ctx$register("df2", mtcars)
ctx$tables()
#> [1] "df1" "df2"