File tree Expand file tree Collapse file tree 3 files changed +0
-147
lines changed Expand file tree Collapse file tree 3 files changed +0
-147
lines changed Original file line number Diff line number Diff line change @@ -433,32 +433,3 @@ impl NativeType {
433433 true
434434 }
435435}
436-
437- // Singleton instances
438- // TODO: Replace with LazyLock
439- // pub static LOGICAL_STRING: OnceLock<LogicalTypeRef> = OnceLock::new();
440- // pub static LOGICAL_FLOAT16: OnceLock<LogicalTypeRef> = OnceLock::new();
441- // pub static LOGICAL_FLOAT32: OnceLock<LogicalTypeRef> = OnceLock::new();
442- // pub static LOGICAL_FLOAT64: OnceLock<LogicalTypeRef> = OnceLock::new();
443-
444- // // Usage functions
445- // pub fn logical_string() -> LogicalTypeRef {
446- // Arc::clone(LOGICAL_STRING.get_or_init(|| Arc::new(NativeType::Utf8)))
447- // }
448-
449- // pub fn logical_float16() -> LogicalTypeRef {
450- // Arc::clone(LOGICAL_FLOAT16.get_or_init(|| Arc::new(NativeType::Float16)))
451- // }
452-
453- // pub fn logical_float32() -> LogicalTypeRef {
454- // Arc::clone(LOGICAL_FLOAT32.get_or_init(|| Arc::new(NativeType::Float32)))
455- // }
456-
457- // pub fn logical_float64() -> LogicalTypeRef {
458- // Arc::clone(LOGICAL_FLOAT64.get_or_init(|| Arc::new(NativeType::Float64)))
459- // }
460- // impl From<&DataType> for NativeType {
461- // fn from(value: &DataType) -> Self {
462- // value.clone().into()
463- // }
464- // }
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ pub mod accumulator;
3030pub mod columnar_value;
3131pub mod groups_accumulator;
3232pub mod interval_arithmetic;
33- pub mod logical_type;
3433pub mod operator;
3534pub mod signature;
3635pub mod sort_properties;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments