Skip to content
Merged
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 rust/geodatafusion-flatgeobuf/src/file_format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ impl DisplayAs for FlatGeobufSink {
}
DisplayFormatType::TreeRender => {
writeln!(f, "format: flatgeobuf")?;
write!(f, "file={}", &self.config.original_url)
write!(f, "file={}", self.config.original_url)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion rust/geodatafusion-geojson/src/file_format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ impl DisplayAs for GeoJsonSink {
DisplayFormatType::TreeRender => {
let format_name = "geojson-lines";
writeln!(f, "format: {}", format_name)?;
write!(f, "file={}", &self.config.original_url)
write!(f, "file={}", self.config.original_url)
}
}
}
Expand Down
6 changes: 5 additions & 1 deletion rust/geodatafusion/src/udf/native/accessors/line_string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,14 @@ impl ScalarUDFImpl for EndPoint {

// Not yet exported because we don't handle the nth point second argument yet
#[derive(Debug, Eq, PartialEq, Hash)]
#[allow(dead_code)]
#[expect(dead_code)]
struct PointN {
coord_type: CoordType,
}

impl PointN {
// Not yet exported because we don't handle the nth point second argument yet
#[expect(dead_code)]
pub fn new(coord_type: CoordType) -> Self {
Self { coord_type }
}
Expand All @@ -135,6 +137,8 @@ impl Default for PointN {
}
}

// Not yet exported because we don't handle the nth point second argument yet
#[expect(dead_code)]
static POINT_N_DOCUMENTATION: OnceLock<Documentation> = OnceLock::new();

impl ScalarUDFImpl for PointN {
Expand Down
Loading