Skip to content

Commit

Permalink
hotfix: fixed column lineage bug with get asset name
Browse files Browse the repository at this point in the history
  • Loading branch information
y-bruin committed Feb 3, 2025
1 parent 271ead7 commit 7a3ec52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/pipeline/lineage.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ func (p *LineageExtractor) processLineageColumns(foundPipeline *Pipeline, asset
continue
}

upstreamAsset := foundPipeline.GetAssetByName(upstream.Table)
upstreamAsset := foundPipeline.GetAssetByName(strings.ToLower(upstream.Table))
if upstreamAsset == nil {
if err := p.addColumnToAsset(asset, lineageCol.Name, nil, &Column{
Name: lineageCol.Name,
Expand Down

0 comments on commit 7a3ec52

Please sign in to comment.