-
Notifications
You must be signed in to change notification settings - Fork 168
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
CROSS JOIN UNNEST 血缘解析报错,可能要扩展 RelMdColumnOrigins.getColumnOrigins 方法实现,大佬有空支持下。 #129
Comments
使用dev分支,我pull request的代码有解决这个问题。 |
好像没找到对应的解决代码,尝试更新最新代码运行还是不行。
在 2024-04-27 16:14:18,jeff-zou ***@***.***> 写道:
使用dev分支,我pull request的代码有解决这个问题。
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
jeff-zou
added a commit
to jeff-zou/flink-sql-lineage
that referenced
this issue
May 10, 2024
Karekin
added a commit
to Karekin/flink-sql-lineage
that referenced
this issue
Nov 20, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
CREATE TABLE
kafka_source
(id
bigint,data
ARRAY<row<c1 bigint,c2 string>>) WITH (
'connector' = 'kafka',
'properties.bootstrap.servers' = 'hadoop101:9092',
'topic' = 't1',
'properties.group.id' = 'g1',
'scan.startup.mode' = 'earliest-offset',
'format' = 'json'
);
CREATE TABLE
sink_print
(id bigint,
c1 bigint,
c2 string
) WITH (
'connector' = 'print'
);
insert into sink_print
SELECT id, t.c1, t.c2
FROM kafka_source
CROSS JOIN UNNEST(data) AS t(c1,c2)
;
The text was updated successfully, but these errors were encountered: