Skip to content

Commit

Permalink
Mark U128 and I128 as unimplemented
Browse files Browse the repository at this point in the history
  • Loading branch information
karolisg committed Feb 27, 2024
1 parent dd6469e commit 61c01a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dozer-sink-oracle/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,9 +246,9 @@ impl OracleSinkFactory {
let name = &field.name;
let col_type = match field.typ {
dozer_types::types::FieldType::UInt => "NUMBER(20)",
dozer_types::types::FieldType::U128 => "NUMBER(39)",
dozer_types::types::FieldType::U128 => unimplemented!(),
dozer_types::types::FieldType::Int => "NUMBER(20)",
dozer_types::types::FieldType::I128 => "NUMBER(39)",
dozer_types::types::FieldType::I128 => unimplemented!(),
// Should this be BINARY_DOUBLE?
dozer_types::types::FieldType::Float => "NUMBER",
dozer_types::types::FieldType::Boolean => "NUMBER",
Expand Down

0 comments on commit 61c01a9

Please sign in to comment.