[postgres ingestion] Do you know if there's a way ...
# ingestion
a
[postgres ingestion] Do you know if there's a way to ingest column descriptions?
b
it tries to get column "comments" using sqlalchemy inspector. is it not showing up?
a
Just to make sure, should it specify anything more in ingest job other than this?
Copy code
source:
    type: postgres
    config:
        include_tables: true
        database: <db>
        password: '${POSTGRES_PASSWORD}'
        profiling:
            enabled: false
        host_port: <port>
        include_views: true
        username: '${POSTGRES_USERNAME}'
https://datahubproject.io/docs/generated/ingestion/sources/postgres
b
no need, that behavior should be default regardless of settings
a
thanks