MINOR: Fix unsupported Pipeline entity for lineage (#21069)

This commit is contained in:
Mayur Singal 2025-05-05 06:08:56 +05:30 committed by GitHub
parent f360b3eaf5
commit a7adda8414
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -894,6 +894,10 @@ public class LineageRepository {
LOG.info("Metric column level lineage is not supported");
return new HashSet<>();
}
case PIPELINE -> {
LOG.info("Pipeline column level lineage is not supported");
return new HashSet<>();
}
default -> throw new IllegalArgumentException(
String.format("Unsupported Entity Type %s for lineage", entityReference.getType()));
}