Batch of dataframe commands (#442)

* corrected missing shellerror type

* batch dataframe commands

* removed option to find declaration with input

* ordered dataframe folders
This commit is contained in:
Fernando Herrera
2021-12-06 04:09:49 +00:00
committed by GitHub
parent fdde95f675
commit 1fd26727c5
22 changed files with 471 additions and 127 deletions

View File

@ -30,7 +30,9 @@ pub trait CustomValue: fmt::Debug + Send + Sync {
fn follow_path_string(&self, column_name: String, span: Span) -> Result<Value, ShellError>;
// ordering with other value
fn partial_cmp(&self, other: &Value) -> Option<Ordering>;
fn partial_cmp(&self, _other: &Value) -> Option<Ordering> {
None
}
// Definition of an operation between the object that implements the trait
// and another Value.