In teradatamlspk, you should drop the views created using createOrReplaceTempView at the end of session only.
teradatamlspk
df.createOrReplaceTempView("test_view")
At the end of session drop view.
spark.catalog.dropTempView("test_view")
In teradatamlspk, you should drop the views created using createOrReplaceTempView at the end of session only.
df.createOrReplaceTempView("test_view")
At the end of session drop view.
spark.catalog.dropTempView("test_view")