Skip to content
Snippets Groups Projects
Commit df6a4010 authored by Maksim Kaitmazian's avatar Maksim Kaitmazian Committed by Maksim Kaitmazian
Browse files

fix: support datetime in cast expr

parent feab7405
No related branches found
No related tags found
1 merge request!1414sbroad import
......@@ -36,6 +36,7 @@ impl TryFrom<&Rule> for Type {
match ast_type {
Rule::TypeAny => Ok(Type::Any),
Rule::TypeBool => Ok(Type::Boolean),
Rule::TypeDatetime => Ok(Type::Datetime),
Rule::TypeDecimal => Ok(Type::Decimal),
Rule::TypeDouble => Ok(Type::Double),
Rule::TypeInt => Ok(Type::Integer),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment