You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "crepererum (via GitHub)" <gi...@apache.org> on 2023/04/26 17:13:28 UTC

[GitHub] [arrow-datafusion] crepererum commented on pull request #6129: fix: `common_subexpr_eliminate` and aggregates

crepererum commented on PR #6129:
URL: https://github.com/apache/arrow-datafusion/pull/6129#issuecomment-1523779888

   I'm pretty sure it's unrelated:
   
   ```text
   error[E0425]: cannot find value `env_var` in crate `gix_path`
     --> /usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/gix-config-0.20.1/src/file/init/comfort.rs:31:54
      |
   31 |                     .storage_location(&mut gix_path::env_var)
      |                                                      ^^^^^^^ not found in `gix_path`
   
   error[E0425]: cannot find function `home_dir` in crate `gix_path`
     --> /usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/gix-config-0.20.1/src/file/init/comfort.rs:44:30
      |
   44 |         let home = gix_path::home_dir();
      |                              ^^^^^^^^ not found in `gix_path`
      |
   help: consider importing one of these items
      |
   1  | use gix_path::env::home_dir;
      |
   1  | use std::env::home_dir;
      |
   help: if you import `home_dir`, refer to it directly
      |
   44 -         let home = gix_path::home_dir();
   44 +         let home = home_dir();
      |
   
   ....
   ```
   
   I can debug this tomorrow if nobody beats me on that.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org