Remover tabelas temporárias do Apache SQL Spark

eu tenhoregistertemptable noApache Spark usandoZeppelin abaixo:

val hvacText = sc.textFile("...")

case class Hvac(date: String, time: String, targettemp: Integer, actualtemp: Integer, buildingID: String)

val hvac = hvacText.map(s => s.split(",")).filter(s => s(0) != "Date").map(
    s => Hvac(s(0), 
            s(1),
            s(2).toInt,
            s(3).toInt,
            s(6))).toDF()

hvac.registerTempTable("hvac")

Depois de concluir minhas consultas com esta tabela temporária, como removê-la?

Verifiquei todos os documentos e parece que estou chegando a lugar nenhum.

Alguma orientação?

questionAnswers(3)

yourAnswerToTheQuestion