-
Feature Request
-
Resolution: Done
-
Minor
-
0.9.0.Alpha1
-
None
Unlike MySQL connector, the Postgres connector does not add database, schema and table names to the source section of SourceRecord.
This feature should add this info as follows:
{
…,
"source": {
"version": "0.9.0.Final",
"name": "PostgreSQL_server",
"ts_usec": "1482918357011699",
"txId": "555",
"lsn": "24023128",
"snapshot": null,
"last_snapshot_record": null,
"db": "inventory", // <--
"schema": "public", // <--
"table": "products" // <--
}
…
}