https://delta.io logo
j

John Darrington

05/31/2023, 7:29 PM
How do you represent the decimal precision and scale in the
String
in this
SchemaDataType
?
right now I just have
SchemaDataType::_primitive_("decimal".to_string())
w

Will Jones

05/31/2023, 7:36 PM
It's pretty gross, but a string
format!("decimal({precision},{scale})")
j

John Darrington

05/31/2023, 8:24 PM
success
🦀 1