Re: [PR] [SPARK-48010][SQL] Avoid repeated calls to conf.resolver in resolveExpression [spark]

2024-04-26 Thread via GitHub
dongjoon-hyun closed pull request #46248: [SPARK-48010][SQL] Avoid repeated calls to conf.resolver in resolveExpression URL: https://github.com/apache/spark/pull/46248 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the

Re: [PR] [SPARK-48010][SQL] Avoid repeated calls to conf.resolver in resolveExpression [spark]

2024-04-26 Thread via GitHub
dongjoon-hyun commented on PR #46248: URL: https://github.com/apache/spark/pull/46248#issuecomment-2079911328 Merged to master for Apache Spark 4.0.0. -- 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

[PR] [SPARK-48010][SQL] Avoid repeated calls to conf.resolver in resolveExpression [spark]

2024-04-26 Thread via GitHub
nikhilsheoran-db opened a new pull request, #46248: URL: https://github.com/apache/spark/pull/46248 ### What changes were proposed in this pull request? - This PR instead of calling `conf.resolver` for each call in `resolveExpression`, reuses the `resolver` obtained once. ### Why