From 384e693649ea3f9f4c7b1290397dea89901b2f6e Mon Sep 17 00:00:00 2001 From: Raminder Singh Date: Mon, 25 Nov 2024 10:09:44 +0530 Subject: [PATCH] Revert "fix: remove binary option which is unsupported in pg<14" --- pg_replicate/src/clients/postgres.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pg_replicate/src/clients/postgres.rs b/pg_replicate/src/clients/postgres.rs index 934ede4..e73a73d 100644 --- a/pg_replicate/src/clients/postgres.rs +++ b/pg_replicate/src/clients/postgres.rs @@ -423,7 +423,7 @@ impl ReplicationClient { start_lsn: PgLsn, ) -> Result { let options = format!( - r#"("proto_version" '1', "publication_names" {})"#, + r#"("proto_version" '1', "publication_names" {}, "binary")"#, quote_literal(publication) );