feat: add time() scalar function partial support without modifier #158

This commit is contained in:
sonhmai 2024-08-01 09:55:38 +07:00
parent ce7f373add
commit 789ae4becf
7 changed files with 408 additions and 19 deletions

View file

@ -32,6 +32,8 @@ pub enum LimboError {
ParseFloatError(#[from] std::num::ParseFloatError),
#[error("Parse error: {0}")]
InvalidDate(String),
#[error("Parse error: {0}")]
InvalidTime(String),
}
#[macro_export]