Lineage dialect postgres added to greenplum (#23291)

Co-authored-by: Надежда Коцюба <nadezhda.kotsyuba@uni.rest>
(cherry picked from commit 3c9b3cac48a098811fc85584f9d66f23f6b5f024)
This commit is contained in:
NadezhdaNovotortseva 2025-09-08 16:26:23 +03:00 committed by OpenMetadata Release Bot
parent f4285fea17
commit b7687b2079

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,
}