mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-10 23:26:53 +00:00
build(deps): bump the dependencies group with 7 updates (#2069)
This commit is contained in:
@@ -61,13 +61,14 @@ pub enum QueryError {
|
||||
}
|
||||
|
||||
impl From<DataFusionError> for QueryError {
|
||||
#[track_caller]
|
||||
fn from(value: DataFusionError) -> Self {
|
||||
match value {
|
||||
DataFusionError::External(e) if e.downcast_ref::<QueryError>().is_some() => *e.downcast::<QueryError>().unwrap(),
|
||||
|
||||
v => Self::Datafusion {
|
||||
source: Box::new(v),
|
||||
location: Default::default(),
|
||||
location: std::panic::Location::caller(),
|
||||
backtrace: Backtrace::capture(),
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user