We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b279611 commit 6b091b6Copy full SHA for 6b091b6
rust/cubesql/cubesql/src/compile/date_parser.rs
@@ -13,6 +13,6 @@ pub fn parse_date_str(s: &str) -> Result<NaiveDateTime, DataFusionError> {
13
});
14
15
parsed.map_err(|e| {
16
- DataFusionError::Internal(format!("Can't parse date/time string literal: {}", e))
+ DataFusionError::Internal(format!("Can't parse date/time string literal ({}): {}", s, e))
17
})
18
}
0 commit comments