-
Notifications
You must be signed in to change notification settings - Fork 37
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
Fix build index with special full table name #336
base: main
Are you sure you want to change the base?
Fix build index with special full table name #336
Conversation
Signed-off-by: Sean Kao <[email protected]>
index.build(spark, None) | ||
} | ||
// Getting this error means that parsing doesn't fail with unquoted identifier | ||
assert(error.getMessage().contains("UnresolvedRelation")) |
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.
instead, try to specifically check it does NOT fail with unquoted identifier
@@ -31,22 +32,15 @@ class FlintSparkCoveringIndexSuite extends FlintSuite { | |||
} | |||
} | |||
|
|||
test("can build index building job with unique ID column") { |
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.
this test case is added unintentionally in previous pr
This PR is stalled because it has been open for 30 days with no activity. |
1 similar comment
This PR is stalled because it has been open for 30 days with no activity. |
Description
Fix build index with special full table name, including special characters in catalog name and database name.
Also fix test suite for it.
Note: removed a test case that was added unintentionally
Issues Resolved
List any issues this PR will resolve, e.g. Closes [...].
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.