dropTempView: Drops the temporary view with the given view name in the...

Description Usage Arguments Value Note Examples

View source: R/catalog.R

Description

Drops the temporary view with the given view name in the catalog. If the view has been cached before, then it will also be uncached.

Usage

1
dropTempView(viewName)

Arguments

viewName

the name of the temporary view to be dropped.

Value

TRUE if the view is dropped successfully, FALSE otherwise.

Note

since 2.0.0

Examples

1
2
3
4
5
6
7
## Not run: 
sparkR.session()
df <- read.df(path, "parquet")
createOrReplaceTempView(df, "table")
dropTempView("table")

## End(Not run)

SparkR documentation built on June 3, 2021, 5:05 p.m.