This is an automated email from the ASF dual-hosted git repository.
houqp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/master by this push:
new eeffb07 Fix test group_by_date_trunc failed locally (#1275)
eeffb07 is described below
commit eeffb07a8ffc9183688c38529342ca312d4253ad
Author: Carlos <[email protected]>
AuthorDate: Tue Nov 9 13:39:44 2021 +0800
Fix test group_by_date_trunc failed locally (#1275)
---
datafusion/src/execution/context.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/datafusion/src/execution/context.rs
b/datafusion/src/execution/context.rs
index ee928bd..99358d6 100644
--- a/datafusion/src/execution/context.rs
+++ b/datafusion/src/execution/context.rs
@@ -2309,7 +2309,7 @@ mod tests {
// generate some data
for i in 0..10 {
- let data = format!("{},2020-12-{}T00:00:00.000\n", i, i + 10);
+ let data = format!("{},2020-12-{}T00:00:00.000Z\n", i, i + 10);
file.write_all(data.as_bytes())?;
}
}