Skip to content

Commit 880f61d

Browse files
fmt
1 parent 3a7ba8b commit 880f61d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

etl/src/replication/client.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,9 @@ impl PgReplicationClient {
642642
publication: Option<&str>,
643643
) -> EtlResult<Vec<ColumnSchema>> {
644644
let (pub_cte, pub_pred) = if let Some(publication) = publication {
645-
if let Some(server_version) = self.server_version && server_version.get() >= 150000 {
645+
if let Some(server_version) = self.server_version
646+
&& server_version.get() >= 150000
647+
{
646648
(
647649
format!(
648650
"with pub_attrs as (

0 commit comments

Comments
 (0)