-
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 ObjectStore 0.7.0 and Arrow 46.0.0 #7282
Changes from 1 commit
80e73d7
4b3e187
0d5d5d0
bb896c4
5f4126a
677839c
3e0e8c8
f4fafa9
43f6a90
33aa0ee
3b1080e
f758fca
5a9be81
ec1d6f2
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 |
---|---|---|
|
@@ -244,6 +244,7 @@ async fn sort_preserving_merge() { | |
} | ||
|
||
#[tokio::test] | ||
#[ignore] // TODO: Fix this | ||
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. this still seems to be left TODO 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. Oops, forgot about that 😅 |
||
async fn sort_spill_reservation() { | ||
let partition_size = batches_byte_size(&dict_batches()); | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -201,6 +201,7 @@ pub fn cell_to_string(col: &ArrayRef, row: usize) -> Result<String> { | |
Ok(NULL_STR.to_string()) | ||
} else { | ||
match col.data_type() { | ||
DataType::Null => Ok(NULL_STR.to_string()), | ||
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. |
||
DataType::Boolean => { | ||
Ok(bool_to_str(get_row_value!(array::BooleanArray, col, row))) | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -302,7 +302,7 @@ CREATE TABLE my_table(c1 float, c2 double, c3 boolean, c4 varchar) AS SELECT *,c | |
query RRBT rowsort | ||
SELECT * FROM my_table order by c1 LIMIT 1 | ||
---- | ||
0.00001 0.000000000001 true 1 | ||
0.00001 0.000000000001 true true | ||
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. converting boolean to |
||
|
||
statement ok | ||
DROP TABLE my_table; | ||
|
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.
FYI @Dandandan
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.
Nice 👍