This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/master by this push:
new 2b73119bc feat: derive more traits for `ObjectStoreUrl` (#5288)
2b73119bc is described below
commit 2b73119bc5bdfd7d1fb9f99ab06964ce810f9ea9
Author: Marco Neumann <[email protected]>
AuthorDate: Wed Feb 15 16:28:15 2023 +0100
feat: derive more traits for `ObjectStoreUrl` (#5288)
---
datafusion/core/src/datasource/object_store.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/datafusion/core/src/datasource/object_store.rs
b/datafusion/core/src/datasource/object_store.rs
index ef4822450..8f1fc30f9 100644
--- a/datafusion/core/src/datasource/object_store.rs
+++ b/datafusion/core/src/datasource/object_store.rs
@@ -27,7 +27,7 @@ use std::sync::Arc;
use url::Url;
/// A parsed URL identifying a particular [`ObjectStore`]
-#[derive(Debug, Clone)]
+#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct ObjectStoreUrl {
url: Url,
}