Skip to content

Commit

Permalink
[BUG] bump arrow2 to use copy ptr instead of from_raw_parts (#2194)
Browse files Browse the repository at this point in the history
* fixes an issue where we have non-type-aligned buffers passing into
arrow 2 with
https://doc.rust-lang.org/std/slice/fn.from_raw_parts.html#safety
* Newer versions of the rust complier introduce a check for type aligned
pointers.
  • Loading branch information
samster25 authored Apr 28, 2024
1 parent d42bb90 commit 3db561c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ publish = false
version = "0.2.0-dev0"

[patch.crates-io]
arrow2 = {git = "https://github.com/Eventual-Inc/arrow2", rev = "c0764b00cc05126c80c7ce17ebd7a95d87f815c1"}
arrow2 = {git = "https://github.com/Eventual-Inc/arrow2", rev = "4a893a1d05e643273c984c6ccc21f4904d6e9e3b"}
parquet2 = {git = "https://github.com/Eventual-Inc/parquet2", rev = "d4c24086c4cc824fbabef093ab2fda95d3aacb78"}

[profile.dev]
Expand Down Expand Up @@ -125,7 +125,7 @@ url = "2.4.0"
# branch = "daft-fork"
git = "https://github.com/Eventual-Inc/arrow2"
package = "arrow2"
rev = "c0764b00cc05126c80c7ce17ebd7a95d87f815c1"
rev = "4a893a1d05e643273c984c6ccc21f4904d6e9e3b"

[workspace.dependencies.bincode]
version = "1.3.3"
Expand Down

0 comments on commit 3db561c

Please sign in to comment.