rdblue commented on a change in pull request #23848: [SPARK-26946][SQL] 
Identifiers for multi-catalog
URL: https://github.com/apache/spark/pull/23848#discussion_r266560125
 
 

 ##########
 File path: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/identifiers.scala
 ##########
 @@ -105,3 +107,11 @@ case class FunctionIdentifier(funcName: String, database: 
Option[String])
 object FunctionIdentifier {
   def apply(funcName: String): FunctionIdentifier = new 
FunctionIdentifier(funcName)
 }
+
+/**
+ * Identifies an object in a catalog.
+
+ * @param namespace the namespace in the catalog
+ * @param name the object name
+ */
+case class CatalogIdentifier(namespace: Array[String], name: String) extends 
Identifier
 
 Review comment:
   I don't think this is needed any more.

----------------------------------------------------------------
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]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to