-
Notifications
You must be signed in to change notification settings - Fork 467
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
[GLUTEN-8633] [VL] Rewrite tests for Gluten ColumnarRange #8634
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -263,6 +263,8 @@ class ClickHouseTestSettings extends BackendTestSettings { | |
.exclude("SPARK-24165: CaseWhen/If - nullability of nested types") | ||
.exclude("SPARK-27671: Fix analysis exception when casting null in nested field in struct") | ||
.exclude("summary") | ||
.exclude( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Change to use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. updated |
||
"SPARK-27439: Explain result should match collected result after view change - re-write") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. remove " - re-write". There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
.excludeGlutenTest("distributeBy and localSort") | ||
.excludeGlutenTest("describe") | ||
.excludeGlutenTest("Allow leading/trailing whitespace in string before casting") | ||
|
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.
use
testGluten("SPARK-27439: Explain result should match collected result after view change")
.testGluten
implies it's a variant based on Spark's test. Then, no need to append "re-write".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.
Ditto for other applicable code changes.
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.
done thanks