linhongliu-db commented on a change in pull request #32831:
URL: https://github.com/apache/spark/pull/32831#discussion_r661975979
##########
File path:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/catalog/SessionCatalog.scala
##########
@@ -846,6 +846,30 @@ class SessionCatalog(
case None => fromCatalogTable(viewInfo.tableMeta, isTempView = true)
}
+ private def buildViewDDL(metadata: CatalogTable, isTempView: Boolean):
String = {
+ val isGlobalTemp = metadata.identifier.database.exists(_ ==
globalTempViewManager.database)
+ val viewType = if (isTempView && isGlobalTemp) {
Review comment:
Ah, sounds good. this will make the code simpler.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]