You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/05/11 12:43:33 UTC

[GitHub] [arrow-datafusion] alamb opened a new pull request, #2511: Minor: remove code that is now in arrow

alamb opened a new pull request, #2511:
URL: https://github.com/apache/arrow-datafusion/pull/2511

   This code https://github.com/apache/arrow-rs/issues/1312 was moved to arrow, so use the copy there
   
   
    # Rationale for this change
   Less code == better
   
   # What changes are included in this PR?
   delete copy of code from datafusion
   
   # Are there any user-facing changes?
   No, this is entirely internal


-- 
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


[GitHub] [arrow-datafusion] alamb commented on a diff in pull request #2511: Minor: remove code that is now in arrow

Posted by GitBox <gi...@apache.org>.
alamb commented on code in PR #2511:
URL: https://github.com/apache/arrow-datafusion/pull/2511#discussion_r870255936


##########
datafusion/physical-expr/src/expressions/binary.rs:
##########
@@ -61,14 +61,6 @@ use datafusion_common::{DataFusionError, Result};
 use datafusion_expr::binary_rule::binary_operator_data_type;
 use datafusion_expr::{binary_rule::coerce_types, ColumnarValue, Operator};
 
-// TODO move to arrow_rs

Review Comment:
   The fact I didn't have to `use` the copy in arrow threw me for a little
   
   Then I realized it is included by the following:
    
   ```rust
   use arrow::array::*;
   ```



-- 
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


[GitHub] [arrow-datafusion] andygrove merged pull request #2511: Minor: remove code that is now included in arrow-rs

Posted by GitBox <gi...@apache.org>.
andygrove merged PR #2511:
URL: https://github.com/apache/arrow-datafusion/pull/2511


-- 
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


[GitHub] [arrow-datafusion] alamb commented on a diff in pull request #2511: Minor: remove code that is not included in arrow-rs

Posted by GitBox <gi...@apache.org>.
alamb commented on code in PR #2511:
URL: https://github.com/apache/arrow-datafusion/pull/2511#discussion_r870255936


##########
datafusion/physical-expr/src/expressions/binary.rs:
##########
@@ -61,14 +61,6 @@ use datafusion_common::{DataFusionError, Result};
 use datafusion_expr::binary_rule::binary_operator_data_type;
 use datafusion_expr::{binary_rule::coerce_types, ColumnarValue, Operator};
 
-// TODO move to arrow_rs

Review Comment:
   The fact I didn't have to `use` the copy in arrow confused me for a bit
   
   Then I realized it is included by the following:
    
   ```rust
   use arrow::array::*;
   ```



-- 
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