dropTempTable {SparkR}R Documentation

(Deprecated) Drop Temporary Table

Description

Drops the temporary table with the given table name in the catalog. If the table has been cached/persisted before, it's also unpersisted.

Usage

## Default S3 method:
dropTempTable(tableName)

Arguments

tableName

The name of the SparkSQL table to be dropped.

Note

dropTempTable since 1.4.0

See Also

dropTempView

Examples

## Not run: 
##D sparkR.session()
##D df <- read.df(path, "parquet")
##D createOrReplaceTempView(df, "table")
##D dropTempTable("table")
## End(Not run)

[Package SparkR version 2.4.7 Index]