-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-31058] [SQL] [test-hive1.2] Consolidate the implementation of quoteIfNeeded
#27814
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
quoteIfNeededquoteIfNeeded
|
jenkins retest this please |
|
Test build #119414 has finished for PR 27814 at commit
|
sql/catalyst/src/main/scala/org/apache/spark/sql/connector/catalog/CatalogV2Implicits.scala
Outdated
Show resolved
Hide resolved
gengliangwang
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
dongjoon-hyun
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1, LGTM.
…uoteIfNeeded` ### What changes were proposed in this pull request? There are two implementation of quoteIfNeeded. One is in `org.apache.spark.sql.connector.catalog.CatalogV2Implicits.quote` and the other is in `OrcFiltersBase.quoteAttributeNameIfNeeded`. This PR will consolidate them into one. ### Why are the changes needed? Simplify the codebase. ### Does this PR introduce any user-facing change? No ### How was this patch tested? Existing UTs. Closes #27814 from dbtsai/SPARK-31058. Authored-by: DB Tsai <d_tsai@apple.com> Signed-off-by: DB Tsai <d_tsai@apple.com> (cherry picked from commit fe126a6) Signed-off-by: DB Tsai <d_tsai@apple.com>
|
Merged in master/3.0. Thanks. |
|
Test build #119422 has finished for PR 27814 at commit
|
|
Note that, the test was failing on non related kafka test due to timeout. |
|
Test build #119412 has finished for PR 27814 at commit
|
|
Test build #119417 has finished for PR 27814 at commit
|
…uoteIfNeeded` ### What changes were proposed in this pull request? There are two implementation of quoteIfNeeded. One is in `org.apache.spark.sql.connector.catalog.CatalogV2Implicits.quote` and the other is in `OrcFiltersBase.quoteAttributeNameIfNeeded`. This PR will consolidate them into one. ### Why are the changes needed? Simplify the codebase. ### Does this PR introduce any user-facing change? No ### How was this patch tested? Existing UTs. Closes apache#27814 from dbtsai/SPARK-31058. Authored-by: DB Tsai <d_tsai@apple.com> Signed-off-by: DB Tsai <d_tsai@apple.com>
What changes were proposed in this pull request?
There are two implementation of quoteIfNeeded. One is in
org.apache.spark.sql.connector.catalog.CatalogV2Implicits.quoteand the other is inOrcFiltersBase.quoteAttributeNameIfNeeded. This PR will consolidate them into one.Why are the changes needed?
Simplify the codebase.
Does this PR introduce any user-facing change?
No
How was this patch tested?
Existing UTs.