-
Notifications
You must be signed in to change notification settings - Fork 752
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix output of to_datetime() #6252
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Thanks for the contribution! Please review the labels and make any necessary changes. |
Test failed for --- /workspace/tests/suites/0_stateless/03_dml/03_0023_insert_into_array.result 2022-06-27 08:39:15.297518937 +0000
+++ /workspace/tests/suites/0_stateless/03_dml/03_0023_insert_into_array.stdout 2022-06-27 08:42:54.043516990 +0000
@@ -63,8 +63,8 @@
2021-01-01 2022-01-01
1990-12-01 2030-01-12
==Array(Timestamp)==
-1 ['2021-01-01 01:01:01', '2022-01-01 01:01:01']
-2 ['1990-12-01 10:11:12', '2030-01-12 22:00:00']
+1 ['2021-01-01 01:01:01.000000', '2022-01-01 01:01:01.000000']
+2 ['1990-12-01 10:11:12.000000', '2030-01-12 22:00:00.000000']
2021-01-01 01:01:01.000000 2022-01-01 01:01:01.000000
1990-12-01 10:11:12.000000 2030-01-12 22:00:00.000000
==Array(String)==
03_0023_insert_into_array_v2: [ FAIL ] - result differs with:
--- /workspace/tests/suites/0_stateless/03_dml/03_0023_insert_into_array_v2.result 2022-06-27 08:39:15.297518937 +0000
+++ /workspace/tests/suites/0_stateless/03_dml/03_0023_insert_into_array_v2.stdout 2022-06-27 08:42:57.383425342 +0000
@@ -63,8 +63,8 @@
2021-01-01 2022-01-01
1990-12-01 2030-01-12
==Array(Timestamp)==
-1 ['2021-01-01 01:01:01', '2022-01-01 01:01:01']
-2 ['1990-12-01 10:11:12', '2030-01-12 22:00:00']
+1 ['2021-01-01 01:01:01.000000', '2022-01-01 01:01:01.000000']
+2 ['1990-12-01 10:11:12.000000', '2030-01-12 22:00:00.000000']
2021-01-01 01:01:01.000000 2022-01-01 01:01:01.000000
1990-12-01 10:11:12.000000 2030-01-12 22:00:00.000000
==Array(String)== |
mysql convert result to python types, which lose some detail of the results I am writing a custom MySQLConverter to handle this. |
|
will be fixed in #6255 |
@mergify update |
✅ Branch has been successfully updated |
I hereby agree to the terms of the CLA available at: https://databend.rs/dev/policies/cla/
Summary
Changelog
Related Issues
Fixes #6245
#6244