Skip to content

Commit

Permalink
Use chars
Browse files Browse the repository at this point in the history
  • Loading branch information
karolisg committed Apr 3, 2024
1 parent 0375c2e commit 3593ca9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dozer-ingestion/oracle/src/connector/mapping.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ fn map_data_type(
"RAW" => Ok(FieldType::Binary),
"ROWID" => Ok(FieldType::String),
"CHAR" => Ok(FieldType::String),
"NCHAR" => unimplemented!("convert NCHAR to String"),
"NCHAR" => Ok(FieldType::String),
"CLOB" => Ok(FieldType::String),
"NCLOB" => unimplemented!("convert NCLOB to String"),
"NCLOB" => Ok(FieldType::String),
"BLOB" => Ok(FieldType::Binary),
other => Err(DataTypeError::UnsupportedDataType(other.to_string())),
}?
Expand Down

0 comments on commit 3593ca9

Please sign in to comment.