Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion arrow-pg/src/encoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ pub fn encode_value<T: Encoder>(
return Err(PgWireError::ApiError(ToSqlError::from(format!(
"Unsupported Datatype {} and array {:?}",
arr.data_type(),
&arr
arr
))));
}
}
Expand Down
2 changes: 1 addition & 1 deletion arrow-pg/src/list_encoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ pub fn encode_list<T: Encoder>(
// TODO: add support for more advanced types (fixed size lists, etc.)
list_type => Err(PgWireError::ApiError(ToSqlError::from(format!(
"Unsupported List Datatype {} and array {:?}",
list_type, &arr
list_type, arr
)))),
}
}
Loading