Fix#11311: Add IBM dependency for i Series in DB2 connector (#11381)

This commit is contained in:
Nahuel 2023-05-02 15:50:39 +02:00 committed by GitHub
parent e167589efd
commit 1ec6e5e285
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ plugins: Dict[str, Set[str]] = {
VERSIONS["google-cloud-storage"],
"dbt-artifacts-parser",
},
"db2": {"ibm-db-sa~=0.3"},
"db2": {"ibm-db-sa~=0.3", "sqlalchemy-ibmi==0.9.2"},
"databricks": {"sqlalchemy-databricks~=0.1"},
"datalake-azure": {
"azure-storage-blob~=12.14",

View File

@ -15,7 +15,7 @@
"db2Scheme": {
"description": "SQLAlchemy driver scheme options.",
"type": "string",
"enum": ["db2+ibm_db"],
"enum": ["db2+ibm_db", "ibmi"],
"default": "db2+ibm_db"
}
},