Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
099398e
Wip.
jorgecarleitao Jun 8, 2021
a5b2557
resolve merge conflicts and bump to latest arrow2
houqp Sep 4, 2021
a0c9669
use lexicographical_partition_ranges from arrow2
houqp Sep 4, 2021
3218759
Merge remote-tracking branch 'upstream/master' into arrow22
houqp Sep 4, 2021
a035200
Fix build errors
houqp Sep 6, 2021
843fbe6
Fix DataFusion test and try to make ballista compile (#4)
yjshen Sep 18, 2021
fccbddb
pin arrow-flight to 0.1 in arrow2 repo
houqp Sep 18, 2021
77c69cf
turn on io_parquet_compression feature for arrow2
houqp Sep 18, 2021
2d2e379
estimate array memory usage with estimated_bytes_size
houqp Sep 18, 2021
cb187a6
Merge remote-tracking branch 'upstream/master' into arrow2-merge
houqp Sep 18, 2021
25363d2
fix compile and tests
houqp Sep 19, 2021
7a5294b
Make ballista compile (#6)
yjshen Sep 24, 2021
4030615
Make `cargo test` compile (#7)
yjshen Sep 25, 2021
fde82cf
fix str to timestamp scalarvalue casting
houqp Sep 25, 2021
b585f3b
fixing datafusion tests (#8)
yjshen Sep 25, 2021
99907fd
fix crypto expression tests
houqp Sep 26, 2021
b2f709d
fix floating point precision
houqp Sep 26, 2021
ed5281c
fix list scalar to_arry method for timestamps
houqp Sep 26, 2021
f9504e7
Fix tests (#9)
yjshen Sep 26, 2021
33b6931
Ignore last test, fix `cargo clippy`, format and pass integration tes…
yjshen Sep 28, 2021
ca53b64
bump to latest arrow2, remove ord for interval type
houqp Sep 29, 2021
8702e12
add back case insenstive regex support
houqp Sep 30, 2021
41153dc
support type cast failure message
houqp Oct 2, 2021
ba57aa8
bump to arrow2 and parquet2 0.7, replace arrow-flight with arrow-format
houqp Nov 23, 2021
387fdf6
chore: arrow2 to 0.8, parquet to 0.8, prost to 0.9, tonic to 0.6
yjshen Nov 30, 2021
0d504e6
Merge remote-tracking branch 'upstream/master' into arrow22
houqp Dec 19, 2021
ea6d7fa
Fix build and tests
houqp Dec 20, 2021
44db376
Merge remote-tracking branch 'origin/master' into arrow2_merge
Igosuki Jan 11, 2022
ca9b485
merge latest datafusion
Igosuki Jan 11, 2022
b9125bc
start migrating avro to arrow2
Igosuki Jan 11, 2022
99fdac3
lints
Igosuki Jan 11, 2022
1b916aa
merge latest datafusion
Igosuki Jan 12, 2022
d611d4d
Fix hash utils
Igosuki Jan 12, 2022
171332f
missing import in hash_utils test with no_collision
Igosuki Jan 12, 2022
4344454
address clippies in root workspace
Igosuki Jan 12, 2022
257a7c5
fix tests #1
Igosuki Jan 12, 2022
b5cb938
fix decimal tests
houqp Jan 13, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
missing import in hash_utils test with no_collision
  • Loading branch information
Igosuki committed Jan 12, 2022
commit 171332fdfae9aafad80bade083e1bba98df0b751
2 changes: 1 addition & 1 deletion datafusion/src/physical_plan/hash_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ mod tests {

use arrow::array::{Float32Array, Float64Array};
#[cfg(not(feature = "force_hash_collisions"))]
use arrow::array::{MutableDictionaryArray, MutableUtf8Array, Utf8Array};
use arrow::array::{MutableDictionaryArray, MutableUtf8Array, TryExtend, Utf8Array};

use super::*;

Expand Down