Github user hvanhovell commented on a diff in the pull request:

    https://github.com/apache/spark/pull/13706#discussion_r118845638
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/catalog/SessionCatalog.scala
 ---
    @@ -1090,6 +1090,24 @@ class SessionCatalog(
         }
       }
     
    +  /** Create a temporary macro. */
    +  def createTempMacro(
    +      name: String,
    +      info: ExpressionInfo,
    +      functionBuilder: FunctionBuilder): Unit = {
    +    if (functionRegistry.functionExists(name)) {
    --- End diff --
    
    I am not entirely sure if we should throw an exception here. It 
unfortunately depends on the semantics you follow, SQL will throw an exception, 
whereas the Dataframe API will just overwrite the function. Let's follow Hive 
for now.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

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

Reply via email to