Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
passcod committed Nov 30, 2024
1 parent a4bcd32 commit 15fecf6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pg_replicate/src/pipeline/batching/data_pipeline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::{collections::HashSet, time::Instant};
use futures::StreamExt;
use tokio::pin;
use tokio_postgres::types::PgLsn;
use tracing::{debug, info, warn};
use tracing::{debug, info};

use crate::{
conversions::cdc_event::{CdcEvent, CdcEventConversionError},
Expand Down
2 changes: 1 addition & 1 deletion pg_replicate/src/pipeline/sinks/bigquery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use tracing::info;
use crate::{
clients::bigquery::BigQueryClient,
conversions::{cdc_event::CdcEvent, table_row::TableRow, Cell},
pipeline::{PipelineResumptionState, sources::postgres::TableCopyStreamError},
pipeline::{sources::postgres::TableCopyStreamError, PipelineResumptionState},
table::{ColumnSchema, TableId, TableName, TableSchema},
};

Expand Down
2 changes: 1 addition & 1 deletion pg_replicate/src/pipeline/sinks/stdout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use crate::{
table::{TableId, TableSchema},
};

use super::{Sink, SinkError, InfallibleSinkError};
use super::{InfallibleSinkError, Sink, SinkError};

pub struct StdoutSink;

Expand Down

0 comments on commit 15fecf6

Please sign in to comment.