-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Update to arrow 36 #5685
Update to arrow 36 #5685
Changes from all commits
7f16660
00cc526
660f975
fc29c81
f438ab7
90ef378
18ab4a2
2872f68
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -398,10 +398,10 @@ async fn test_fn_regexp_match() -> Result<()> { | |
"+-----------------------------------+", | ||
"| regexpmatch(test.a,Utf8(\"[a-z]\")) |", | ||
"+-----------------------------------+", | ||
"| [] |", | ||
"| [] |", | ||
"| [] |", | ||
"| [] |", | ||
"| [a] |", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug fix -- see apache/arrow-rs#3803 |
||
"| [a] |", | ||
"| [d] |", | ||
"| [b] |", | ||
"+-----------------------------------+", | ||
]; | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1387,7 +1387,7 @@ as values | |
('2018-11-13T17:11:10.011375885995', 'Row 0'), | ||
('2011-12-13T11:13:10.12345', 'Row 1'), | ||
(null, 'Row 2'), | ||
('2021-1-1T05:11:10.432', 'Row 3'); | ||
('2021-01-01T05:11:10.432', 'Row 3'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Arrow no longer supports timestamps of this shortened form, it has never been documented to support them, and it is an accidental undocumented quirk of chrono that it did. I would very strongly resist changing this, being able to predict the digit locations ahead of time is critical to avoiding a data dependency when parsing. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Filed apache/arrow-rs#3969 to track (I don't think we necessarily need to change arrow to support these timestamps, it but it will reduce confusion to have the change documented) |
||
|
||
|
||
statement ok | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -564,4 +564,4 @@ insert into foo values (null); | |
query I | ||
select * from foo; | ||
---- | ||
NULL | ||
NULL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See #5441 (comment)
This test was wrong