-
Notifications
You must be signed in to change notification settings - Fork 938
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
[KYUUBI#2405] Support Flink StringData Data Type #2718
Conversation
Thanks @link3280, could you please add the FLINK JIRA ticket link about the change you described? |
...ls/kyuubi-flink-sql-engine/src/main/scala/org/apache/kyuubi/engine/flink/schema/RowSet.scala
Outdated
Show resolved
Hide resolved
@pan3793 Sure. Updated. |
…/org/apache/kyuubi/engine/flink/schema/RowSet.scala Co-authored-by: Cheng Pan <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #2718 +/- ##
============================================
- Coverage 64.82% 61.92% -2.90%
+ Complexity 279 238 -41
============================================
Files 409 406 -3
Lines 19661 19603 -58
Branches 2638 2632 -6
============================================
- Hits 12745 12140 -605
- Misses 5706 6298 +592
+ Partials 1210 1165 -45
Continue to review full report at Codecov.
|
...ls/kyuubi-flink-sql-engine/src/main/scala/org/apache/kyuubi/engine/flink/schema/RowSet.scala
Outdated
Show resolved
Hide resolved
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
Thanks, merging to master |
Why are the changes needed?
Currently, Flink uses its legacy data type system in CollectSink, but sooner would move to the new type system (see https://issues.apache.org/jira/browse/FLINK-12251). Kyuubi should adapt to the new data type system beforehand.
This PR supports StringData in Flink.
This is a subtask of #2100 .
How was this patch tested?
Add some test cases that check the changes thoroughly including negative and positive cases if possible
Add screenshots for manual tests if appropriate
Run test locally before make a pull request