Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[postgres] Add commits of PostgresConnection back to distinguish with…
… debezium's origin class
  • Loading branch information
loserwang1024 committed Dec 8, 2023
commit a4de64ae123971284318e82c09608248d2aa456d
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@
* {@link JdbcConnection} connection extension used for connecting to Postgres instances.
*
* @author Horia Chiorean
* <p>Copied from Debezium 1.9.2-Final with two additional methods:
* <ul>
* <li>Constructor PostgresConnection( Configuration config, PostgresValueConverterBuilder
* valueConverterBuilder, ConnectionFactory factory) to allow passing a custom
* ConnectionFactory
* <li>override connection() to return a unwrapped PgConnection (otherwise, it will complain
* about HikariProxyConnection cannot be cast to class org.postgresql.core.BaseConnection)
* </ul>
*/
public class PostgresConnection extends JdbcConnection {

Expand Down