We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a7ba8b commit 880f61dCopy full SHA for 880f61d
etl/src/replication/client.rs
@@ -642,7 +642,9 @@ impl PgReplicationClient {
642
publication: Option<&str>,
643
) -> EtlResult<Vec<ColumnSchema>> {
644
let (pub_cte, pub_pred) = if let Some(publication) = publication {
645
- if let Some(server_version) = self.server_version && server_version.get() >= 150000 {
+ if let Some(server_version) = self.server_version
646
+ && server_version.get() >= 150000
647
+ {
648
(
649
format!(
650
"with pub_attrs as (
0 commit comments