This is an automated email from the ASF dual-hosted git repository.
alamb 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 e05083c Add timezome string to stablize test (#1265)
e05083c is described below
commit e05083ca55c3fe38e7a3bfd5183d847ae7488160
Author: Liang-Chi Hsieh <[email protected]>
AuthorDate: Mon Nov 8 12:48:31 2021 -0800
Add timezome string to stablize test (#1265)
* Fix test.
* For review comment.
---
datafusion/src/execution/context.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/datafusion/src/execution/context.rs
b/datafusion/src/execution/context.rs
index 6295184..ee928bd 100644
--- a/datafusion/src/execution/context.rs
+++ b/datafusion/src/execution/context.rs
@@ -3890,8 +3890,8 @@ mod tests {
async fn create_external_table_with_timestamps() {
let mut ctx = ExecutionContext::new();
- let data = "Jorge,2018-12-13T12:12:10.011\n\
- Andrew,2018-11-13T17:11:10.011";
+ let data = "Jorge,2018-12-13T12:12:10.011Z\n\
+ Andrew,2018-11-13T17:11:10.011Z";
let tmp_dir = TempDir::new().unwrap();
let file_path = tmp_dir.path().join("timestamps.csv");