(Deprecated) Drop Temporary Table
dropTempTable-deprecated.Rd
Drops the temporary table with the given table name in the catalog. If the table has been cached/persisted before, it's also unpersisted.
Examples
if (FALSE) {
sparkR.session()
df <- read.df(path, "parquet")
createOrReplaceTempView(df, "table")
dropTempTable("table")
}