Fix #11556: Add support for Db2 for IBM i (#14680)

This commit is contained in:
Mayur Singal 2024-01-11 12:35:52 +05:30 committed by GitHub
parent 7707b471cb
commit 190212c8ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 1 deletions

View File

@ -157,6 +157,7 @@ plugins: Dict[str, Set[str]] = {
VERSIONS["azure-identity"],
},
"db2": {"ibm-db-sa~=0.3"},
"db2-ibmi": {"sqlalchemy-ibmi~=0.9.3"},
"databricks": {VERSIONS["sqlalchemy-databricks"], VERSIONS["databricks-sdk"]},
"datalake-azure": {
VERSIONS["azure-storage-blob"],

View File

@ -105,6 +105,8 @@ Executing the profiler workflow or data quality tests, will require the user to
- **database**: Database of the data source.
- **Host and Port**: Enter the fully qualified hostname and port number for your DB2 deployment in the Host and Port field.
Note: In case you are using Db2 for IBM i, then from advanced config you need choose the `ibmi` scheme.
{% partial file="/v1.3/connectors/database/advanced-configuration.md" /%}
{% /extraContent %}

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

View File

@ -39,6 +39,8 @@ $$section
### Scheme $(id="scheme")
SQLAlchemy driver scheme options.
Note: In case you are using Db2 for IBM i, then from advanced config you can choose the `ibmi` scheme.
$$
$$section