I have a table written to the warehouse in Databricks, and I would like to drop it using the {SparkR} package. Essentially I would like to do the opposite of SparkR::saveAsTable()
.
Using SparkR::sql("DROP TABLE IF EXISTS x.y.z;")
does work, but is there a dedicated function for this task?