We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Lateral view explode
Test case:
test("test lateral view explode") { withTable("t1", "t2") { _ => spark.sql("CREATE TABLE t1 (a string, b string, c string) USING hive") spark.sql("CREATE TABLE t2 (a string, b string, c string) USING hive") val ret0 = exectractLineage("insert into t1 select 1,2,a.action " + "from t2 lateral view explode(split(c,'\\},\\{')) a as action") assert(ret0 == Lineage( List("default.t2"), List("default.t1"), List( ("default.t1.a", Set()), ("default.t1.b", Set()), ("default.t1.c", Set("default.t2.c")) ))) } }
No response
The text was updated successfully, but these errors were encountered:
lateral view explode
0ea5795
Successfully merging a pull request may close this issue.
Code of Conduct
Search before asking
Describe the feature
Test case:
Motivation
No response
Describe the solution
No response
Additional context
No response
Are you willing to submit PR?
The text was updated successfully, but these errors were encountered: