Skip to content

Commit afa0b4f

Browse files
committed
Cargo fmt
1 parent ad9eaa6 commit afa0b4f

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

arrow-pg/src/encoder.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -534,8 +534,7 @@ pub fn encode_value<T: Encoder>(
534534
.or_else(|| get_dict_values!(UInt64Type))
535535
.ok_or_else(|| {
536536
ToSqlError::from(format!(
537-
"Unsupported dictionary key type for value type {value_type}"
538-
537+
"Unsupported dictionary key type for value type {value_type}"
539538
))
540539
})?;
541540

datafusion-postgres/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ pub async fn serve(
119119
tokio::spawn(async move {
120120
if let Err(e) = process_socket(socket, tls_acceptor_ref, factory_ref).await {
121121
eprintln!("Error processing socket: {e}");
122-
123122
}
124123
});
125124
}

datafusion-postgres/src/pg_catalog.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1830,7 +1830,7 @@ pub fn setup_pg_catalog(
18301830
session_context
18311831
.catalog(catalog_name)
18321832
.ok_or_else(|| {
1833-
DataFusionError::Configuration(format!(
1833+
DataFusionError::Configuration(format!(
18341834
"Catalog not found when registering pg_catalog: {catalog_name}"
18351835
))
18361836
})?

0 commit comments

Comments
 (0)