alamb commented on issue #7221:
URL: 
https://github.com/apache/arrow-datafusion/issues/7221#issuecomment-1668442880

   
   
   The fact that 
   ```
       Updating zerocopy v0.6.1 -> v0.6.2
       Updating zerocopy-derive v0.3.2 -> v0.6.2
   ```
   
   Makes me believe that something about the update of the zero copy crate 
broke existing crates
   
   This fixes the issue:
   
   ```diff
   diff --git a/datafusion/core/Cargo.toml b/datafusion/core/Cargo.toml
   index e641fc97a5..def2dc7410 100644
   --- a/datafusion/core/Cargo.toml
   +++ b/datafusion/core/Cargo.toml
   @@ -94,6 +94,8 @@ url = "2.2"
    uuid = { version = "1.0", features = ["v4"] }
    xz2 = { version = "0.1", optional = true }
    zstd = { version = "0.12", optional = true, default-features = false }
   +# workaround https://github.com/apache/arrow-datafusion/issues/7221
   +zerocopy = "=0.6.1"
   ```
   
   I will submit a PR to DataFusion and then file a ticket upstream


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to