sqllineage icon indicating copy to clipboard operation
sqllineage copied to clipboard

Empty LineageRunner.get_column_lineage result for INSERT with SELECT when joining with the target table

Open vladkol opened this issue 10 months ago • 1 comments

The following query's lineage is visualized well, but returns empty lineage from LineageRunner.get_column_lineage

INSERT INTO s1.t1
    SELECT max(tt1.price) + min(bb1.price) AS price, 0 AS kid FROM s1.bb bb1
                  INNER JOIN s1.t1 tt1 ON tt1.id = bb1.id AND bb1.kid = 0
image

vladkol avatar Sep 05 '23 15:09 vladkol