Open vinayakmalik95 opened 1 month ago
Hello @vinayakmalik95, Thanks for finding the time to report the issue! We really appreciate the community's efforts to improve Apache Kyuubi.
This is present in all release since the inception of lineage in kyuubi.
@iodone @zwangsheng @bowenliang123 @cfmcgrady let me know so I can raise the PR
This is present in all releases since the inception of lineage in kyuubi.
@iodone @zwangsheng @bowenliang123 @cfmcgrady let me know so I can raise the PR
Can you run the unit test with your specific error case?
yes it fails with current unit test
@iodone
@Vinayakmalik95 You can try to fix it if the problem has been located.
I have already provided the solution in the comments above, let me open the PR for the same.
Code of Conduct
Search before asking
Describe the bug
Lineage is returned as empty since we dont return the parentColumnLineage
but an empty AttributeSet()
case p if p.children.isEmpty => ListMap[Attribute, AttributeSet]()
where as it should be
case p if p.children.isEmpty => parentColumnsLineage
Affects Version(s)
https://github.com/apache/kyuubi/releases/tag/v1.9.2
Kyuubi Server Log Output
Kyuubi Engine Log Output
Kyuubi Server Configurations
No response
Kyuubi Engine Configurations
No response
Additional context
By uddating the logic when
case p if p.children.isEmpty
we should return the parentColumnLineage instead of empty ListMap[Attribute, AttributeSet]()
Are you willing to submit PR?