Lineage dialect postgres added to greenplum (#23291)

Co-authored-by: Надежда Коцюба <nadezhda.kotsyuba@uni.rest>
This commit is contained in:
NadezhdaNovotortseva 2025-09-08 16:26:23 +03:00 committed by GitHub
parent 450840eb8e
commit 3c9b3cac48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -40,6 +40,9 @@ from metadata.generated.schema.entity.services.connections.database.deltaLakeCon
from metadata.generated.schema.entity.services.connections.database.exasolConnection import (
ExasolType,
)
from metadata.generated.schema.entity.services.connections.database.greenplumConnection import (
GreenplumType,
)
from metadata.generated.schema.entity.services.connections.database.hiveConnection import (
HiveType,
)
@ -143,6 +146,7 @@ MAP_CONNECTION_TYPE_DIALECT: Dict[str, Dialect] = {
str(ExasolType.Exasol.value): Dialect.EXASOL,
str(TrinoType.Trino.value): Dialect.TRINO,
str(VerticaType.Vertica.value): Dialect.VERTICA,
str(GreenplumType.Greenplum.value): Dialect.POSTGRES,
}