MaxGekk opened a new pull request #31295: URL: https://github.com/apache/spark/pull/31295
### What changes were proposed in this pull request? Rename `SessionCatalog.isTemporaryTable()` to `SessionCatalog.isTempView()`. ### Why are the changes needed? To improve code maintenance. Currently, there are two methods that do the same but have different names: ```scala def isTempView(nameParts: Seq[String]): Boolean ``` and ```scala def isTemporaryTable(name: TableIdentifier): Boolean ``` ### Does this PR introduce _any_ user-facing change? Should not since `SessionCatalog` is not public API. ### How was this patch tested? By running the existing tests: ``` $ build/sbt -Phive-2.3 -Phive-thriftserver "test:testOnly *SessionCatalogSuite" ``` ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
