File tree 3 files changed +0
-147
lines changed
3 files changed +0
-147
lines changed Original file line number Diff line number Diff line change @@ -433,32 +433,3 @@ impl NativeType {
433
433
true
434
434
}
435
435
}
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;
30
30
pub mod columnar_value;
31
31
pub mod groups_accumulator;
32
32
pub mod interval_arithmetic;
33
- pub mod logical_type;
34
33
pub mod operator;
35
34
pub mod signature;
36
35
pub mod sort_properties;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments