dropTempTable {SparkR} | R Documentation |
Drops the temporary table with the given table name in the catalog. If the table has been cached/persisted before, it's also unpersisted.
## Default S3 method: dropTempTable(tableName)
tableName |
The name of the SparkSQL table to be dropped. |
dropTempTable since 1.4.0
## Not run:
##D sparkR.session()
##D df <- read.df(path, "parquet")
##D createOrReplaceTempView(df, "table")
##D dropTempTable("table")
## End(Not run)