[GitHub] [arrow] sunchao commented on a change in pull request #9592: ARROW-11803: [Rust] [Parquet] Support v2 LogicalType

2021-02-28 Thread GitBox
sunchao commented on a change in pull request #9592: URL: https://github.com/apache/arrow/pull/9592#discussion_r584495886 ## File path: rust/parquet/src/schema/types.rs ## @@ -972,18 +1011,22 @@ fn from_thrift_helper( } /// Method to convert to Thrift. -pub fn

[GitHub] [arrow] sunchao commented on a change in pull request #9592: ARROW-11803: [Rust] [Parquet] Support v2 LogicalType

2021-02-28 Thread GitBox
sunchao commented on a change in pull request #9592: URL: https://github.com/apache/arrow/pull/9592#discussion_r584495886 ## File path: rust/parquet/src/schema/types.rs ## @@ -972,18 +1011,22 @@ fn from_thrift_helper( } /// Method to convert to Thrift. -pub fn

[GitHub] [arrow] nevi-me commented on pull request #9592: ARROW-11803: [Rust] [Parquet] Support v2 LogicalType

2021-02-28 Thread GitBox
nevi-me commented on pull request #9592: URL: https://github.com/apache/arrow/pull/9592#issuecomment-787629194 @sunchao I've updated the PR, @sadikovi I added a test that checks that we roundtrip the logical type to the file.

[GitHub] [arrow] liyafan82 closed pull request #9581: ARROW-11788: [Java] Fix appending empty delta vectors

2021-02-28 Thread GitBox
liyafan82 closed pull request #9581: URL: https://github.com/apache/arrow/pull/9581 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

[GitHub] [arrow] liyafan82 commented on pull request #9581: ARROW-11788: [Java] Fix appending empty delta vectors

2021-02-28 Thread GitBox
liyafan82 commented on pull request #9581: URL: https://github.com/apache/arrow/pull/9581#issuecomment-787626343 @nbruno Thanks for the PR. Merging. This is an automated message from the Apache Git Service. To respond to the

[GitHub] [arrow] seddonm1 commented on a change in pull request #9565: ARROW-11655: [Rust][DataFusion] Postgres String Functions: left, lpad, right, rpad

2021-02-28 Thread GitBox
seddonm1 commented on a change in pull request #9565: URL: https://github.com/apache/arrow/pull/9565#discussion_r584420423 ## File path: rust/datafusion/src/physical_plan/type_coercion.rs ## @@ -168,20 +168,35 @@ fn maybe_data_types( pub fn can_coerce_from(type_into: ,

[GitHub] [arrow] jorgecarleitao closed pull request #9492: ARROW-11623: [Rust] Mark make_array as unsafe.

2021-02-28 Thread GitBox
jorgecarleitao closed pull request #9492: URL: https://github.com/apache/arrow/pull/9492 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

[GitHub] [arrow] seddonm1 commented on pull request #9523: ARROW-11687: [Rust][DataFusion] RepartitionExec Hanging

2021-02-28 Thread GitBox
seddonm1 commented on pull request #9523: URL: https://github.com/apache/arrow/pull/9523#issuecomment-787565887 @alamb I have raised a PR to merge in the test so that we can ensure whatever changes does not cause a hang.

[GitHub] [arrow] github-actions[bot] commented on pull request #9603: ARROW-11687: [Rust][DataFusion] RepartitionExec Hanging Test

2021-02-28 Thread GitBox
github-actions[bot] commented on pull request #9603: URL: https://github.com/apache/arrow/pull/9603#issuecomment-787560668 https://issues.apache.org/jira/browse/ARROW-11687 This is an automated message from the Apache Git

[GitHub] [arrow] seddonm1 opened a new pull request #9603: ARROW-11687: [Rust][DataFusion] RepartitionExec Hanging Test

2021-02-28 Thread GitBox
seddonm1 opened a new pull request #9603: URL: https://github.com/apache/arrow/pull/9603 @alamb This is the test that was hanging without `tokio::task::yield_now().await;` so we should incorporate it for any future changes.

[GitHub] [arrow] seddonm1 commented on pull request #9567: ARROW-11775: [Rust][DataFusion] Feature Flags for Dependencies

2021-02-28 Thread GitBox
seddonm1 commented on pull request #9567: URL: https://github.com/apache/arrow/pull/9567#issuecomment-787554082 Thanks @alamb and @elferherrera I have incorporated both your ideas within the limitations of the rust compiler; namely: 1. feature flag names if used like

[GitHub] [arrow] emkornfield commented on pull request #8375: ARROW-9318: [C++] Two level cache with expiraton

2021-02-28 Thread GitBox
emkornfield commented on pull request #8375: URL: https://github.com/apache/arrow/pull/8375#issuecomment-787527668 @pitrou is this obsolete now? I think you checked this in? This is an automated message from the Apache Git

[GitHub] [arrow] emkornfield commented on pull request #7110: ARROW-8952: [C++] WIP Support for textual, JSON schema representation

2021-02-28 Thread GitBox
emkornfield commented on pull request #7110: URL: https://github.com/apache/arrow/pull/7110#issuecomment-787527442 ugh, sorry I never got to this. will try to look this week hopefully. This is an automated message from the

[GitHub] [arrow] emkornfield commented on pull request #9421: ARROW-11066: [FlightRPC][Java] Make zero-copy writes a configurable option

2021-02-28 Thread GitBox
emkornfield commented on pull request #9421: URL: https://github.com/apache/arrow/pull/9421#issuecomment-787527208 a few nits, questions about the additional parameter otherwise LGTM. This is an automated message from the

[GitHub] [arrow] emkornfield commented on a change in pull request #9421: ARROW-11066: [FlightRPC][Java] Make zero-copy writes a configurable option

2021-02-28 Thread GitBox
emkornfield commented on a change in pull request #9421: URL: https://github.com/apache/arrow/pull/9421#discussion_r584364445 ## File path: java/flight/flight-core/src/test/java/org/apache/arrow/flight/TestBasicOperation.java ## @@ -354,7 +360,7 @@ public void

[GitHub] [arrow] emkornfield commented on a change in pull request #9421: ARROW-11066: [FlightRPC][Java] Make zero-copy writes a configurable option

2021-02-28 Thread GitBox
emkornfield commented on a change in pull request #9421: URL: https://github.com/apache/arrow/pull/9421#discussion_r584364405 ## File path: java/flight/flight-core/src/test/java/org/apache/arrow/flight/TestBasicOperation.java ## @@ -63,6 +63,12 @@ */ public class

[GitHub] [arrow] emkornfield commented on a change in pull request #9421: ARROW-11066: [FlightRPC][Java] Make zero-copy writes a configurable option

2021-02-28 Thread GitBox
emkornfield commented on a change in pull request #9421: URL: https://github.com/apache/arrow/pull/9421#discussion_r584364044 ## File path: java/flight/flight-core/src/main/java/org/apache/arrow/flight/ArrowMessage.java ## @@ -137,21 +156,24 @@ public

[GitHub] [arrow] emkornfield commented on a change in pull request #9421: ARROW-11066: [FlightRPC][Java] Make zero-copy writes a configurable option

2021-02-28 Thread GitBox
emkornfield commented on a change in pull request #9421: URL: https://github.com/apache/arrow/pull/9421#discussion_r584363848 ## File path: java/flight/flight-core/src/main/java/org/apache/arrow/flight/ArrowMessage.java ## @@ -67,7 +67,25 @@ */ class ArrowMessage

[GitHub] [arrow] emkornfield commented on a change in pull request #9421: ARROW-11066: [FlightRPC][Java] Make zero-copy writes a configurable option

2021-02-28 Thread GitBox
emkornfield commented on a change in pull request #9421: URL: https://github.com/apache/arrow/pull/9421#discussion_r584363690 ## File path: java/flight/flight-core/src/main/java/org/apache/arrow/flight/ArrowMessage.java ## @@ -67,7 +67,25 @@ */ class ArrowMessage

[GitHub] [arrow] emkornfield commented on pull request #8210: ARROW-10031: [CI][Java] Support Java benchmark in Archery

2021-02-28 Thread GitBox
emkornfield commented on pull request #8210: URL: https://github.com/apache/arrow/pull/8210#issuecomment-787525998 CC @dianaclarke who I think has also been working on continuous benchmarking. This is an automated message

[GitHub] [arrow] kou commented on a change in pull request #9598: ARROW-11804: [Developer] Offer to create JIRA issue

2021-02-28 Thread GitBox
kou commented on a change in pull request #9598: URL: https://github.com/apache/arrow/pull/9598#discussion_r584360440 ## File path: dev/merge_arrow_pr.py ## @@ -547,6 +566,86 @@ def get_pr_num(): return input("Which pull request would you like to merge? (e.g. 34): ")

[GitHub] [arrow] alamb commented on pull request #9600: ARROW-11822: [Rust][Datafusion] Support case sensitive for function

2021-02-28 Thread GitBox
alamb commented on pull request #9600: URL: https://github.com/apache/arrow/pull/9600#issuecomment-787524146 > Thank you very much!I'm going to do this in two steps, step one: support case-sensitive functionality, step two: make it case-insensitive by default, and fix the test cases

[GitHub] [arrow] kou commented on a change in pull request #8757: ARROW-8147: [C++] Add google-cloud-cpp to ThirdpartyToolchain

2021-02-28 Thread GitBox
kou commented on a change in pull request #8757: URL: https://github.com/apache/arrow/pull/8757#discussion_r584358894 ## File path: ci/conda_env_unix.yml ## @@ -19,6 +19,8 @@ autoconf ccache +google-cloud-cpp=1.20.0 Review comment: I determined required abseil

[GitHub] [arrow] yordan-pavlov commented on a change in pull request #9588: ARROW-11799: [Rust] fix len of string and binary arrays created from unbound iterator

2021-02-28 Thread GitBox
yordan-pavlov commented on a change in pull request #9588: URL: https://github.com/apache/arrow/pull/9588#discussion_r584316571 ## File path: rust/arrow/src/array/array_binary.rs ## @@ -258,6 +258,8 @@ where } } +// calculate actual data_len,

[GitHub] [arrow] josiahyan commented on a change in pull request #8757: ARROW-8147: [C++] Add google-cloud-cpp to ThirdpartyToolchain

2021-02-28 Thread GitBox
josiahyan commented on a change in pull request #8757: URL: https://github.com/apache/arrow/pull/8757#discussion_r584312257 ## File path: ci/conda_env_unix.yml ## @@ -19,6 +19,8 @@ autoconf ccache +google-cloud-cpp=1.20.0 Review comment: The currently available

[GitHub] [arrow] josiahyan commented on a change in pull request #8757: ARROW-8147: [C++] Add google-cloud-cpp to ThirdpartyToolchain

2021-02-28 Thread GitBox
josiahyan commented on a change in pull request #8757: URL: https://github.com/apache/arrow/pull/8757#discussion_r584312257 ## File path: ci/conda_env_unix.yml ## @@ -19,6 +19,8 @@ autoconf ccache +google-cloud-cpp=1.20.0 Review comment: The currently available

[GitHub] [arrow] josiahyan commented on a change in pull request #8757: ARROW-8147: [C++] Add google-cloud-cpp to ThirdpartyToolchain

2021-02-28 Thread GitBox
josiahyan commented on a change in pull request #8757: URL: https://github.com/apache/arrow/pull/8757#discussion_r584312257 ## File path: ci/conda_env_unix.yml ## @@ -19,6 +19,8 @@ autoconf ccache +google-cloud-cpp=1.20.0 Review comment: The currently available

[GitHub] [arrow] josiahyan commented on a change in pull request #8757: ARROW-8147: [C++] Add google-cloud-cpp to ThirdpartyToolchain

2021-02-28 Thread GitBox
josiahyan commented on a change in pull request #8757: URL: https://github.com/apache/arrow/pull/8757#discussion_r584312257 ## File path: ci/conda_env_unix.yml ## @@ -19,6 +19,8 @@ autoconf ccache +google-cloud-cpp=1.20.0 Review comment: The currently available

[GitHub] [arrow] josiahyan commented on a change in pull request #8757: ARROW-8147: [C++] Add google-cloud-cpp to ThirdpartyToolchain

2021-02-28 Thread GitBox
josiahyan commented on a change in pull request #8757: URL: https://github.com/apache/arrow/pull/8757#discussion_r584312257 ## File path: ci/conda_env_unix.yml ## @@ -19,6 +19,8 @@ autoconf ccache +google-cloud-cpp=1.20.0 Review comment: The currently available

[GitHub] [arrow] josiahyan commented on a change in pull request #8757: ARROW-8147: [C++] Add google-cloud-cpp to ThirdpartyToolchain

2021-02-28 Thread GitBox
josiahyan commented on a change in pull request #8757: URL: https://github.com/apache/arrow/pull/8757#discussion_r584312257 ## File path: ci/conda_env_unix.yml ## @@ -19,6 +19,8 @@ autoconf ccache +google-cloud-cpp=1.20.0 Review comment: The currently available

[GitHub] [arrow] josiahyan commented on a change in pull request #8757: ARROW-8147: [C++] Add google-cloud-cpp to ThirdpartyToolchain

2021-02-28 Thread GitBox
josiahyan commented on a change in pull request #8757: URL: https://github.com/apache/arrow/pull/8757#discussion_r584312257 ## File path: ci/conda_env_unix.yml ## @@ -19,6 +19,8 @@ autoconf ccache +google-cloud-cpp=1.20.0 Review comment: The currently available

[GitHub] [arrow] josiahyan commented on a change in pull request #8757: ARROW-8147: [C++] Add google-cloud-cpp to ThirdpartyToolchain

2021-02-28 Thread GitBox
josiahyan commented on a change in pull request #8757: URL: https://github.com/apache/arrow/pull/8757#discussion_r584312257 ## File path: ci/conda_env_unix.yml ## @@ -19,6 +19,8 @@ autoconf ccache +google-cloud-cpp=1.20.0 Review comment: The currently available

[GitHub] [arrow] josiahyan commented on a change in pull request #8757: ARROW-8147: [C++] Add google-cloud-cpp to ThirdpartyToolchain

2021-02-28 Thread GitBox
josiahyan commented on a change in pull request #8757: URL: https://github.com/apache/arrow/pull/8757#discussion_r584312257 ## File path: ci/conda_env_unix.yml ## @@ -19,6 +19,8 @@ autoconf ccache +google-cloud-cpp=1.20.0 Review comment: The currently available

[GitHub] [arrow] josiahyan commented on a change in pull request #8757: ARROW-8147: [C++] Add google-cloud-cpp to ThirdpartyToolchain

2021-02-28 Thread GitBox
josiahyan commented on a change in pull request #8757: URL: https://github.com/apache/arrow/pull/8757#discussion_r584312257 ## File path: ci/conda_env_unix.yml ## @@ -19,6 +19,8 @@ autoconf ccache +google-cloud-cpp=1.20.0 Review comment: The currently available

[GitHub] [arrow] jorgecarleitao commented on pull request #9592: ARROW-11803: [Rust] [Parquet] Support v2 LogicalType

2021-02-28 Thread GitBox
jorgecarleitao commented on pull request #9592: URL: https://github.com/apache/arrow/pull/9592#issuecomment-787462991 FWIW, I think that we should have a bunch of golden parquet files and the corresponding `.json`, e.g. generated by C++, so that we can change parquets' implementation

[GitHub] [arrow] andygrove commented on pull request #9600: ARROW-11822: [Rust][Datafusion] Support case sensitive for function

2021-02-28 Thread GitBox
andygrove commented on pull request #9600: URL: https://github.com/apache/arrow/pull/9600#issuecomment-787461922 I think it is good that we default to Postgres dialect and case-sensitivity but I would like to make it possible for users to choose other dialects and case-sensitivity if

[GitHub] [arrow] ritchie46 commented on pull request #9572: ARROW-11779: [Rust] make alloc module public

2021-02-28 Thread GitBox
ritchie46 commented on pull request #9572: URL: https://github.com/apache/arrow/pull/9572#issuecomment-787460336 I do think that an `AlignedVec` in Arrow could speed up some code and make some internal code easier to maintain. If you want I could clean it up and propose a PR. To

[GitHub] [arrow] codecov-io commented on pull request #9602: ARROW-11630: [Rust] Introduce limit option for sort kenerl

2021-02-28 Thread GitBox
codecov-io commented on pull request #9602: URL: https://github.com/apache/arrow/pull/9602#issuecomment-787460272 # [Codecov](https://codecov.io/gh/apache/arrow/pull/9602?src=pr=h1) Report > Merging [#9602](https://codecov.io/gh/apache/arrow/pull/9602?src=pr=desc) (85439c1) into

[GitHub] [arrow] github-actions[bot] commented on pull request #9602: ARROW-11630: [Rust] Introduce limit option for sort kenerl

2021-02-28 Thread GitBox
github-actions[bot] commented on pull request #9602: URL: https://github.com/apache/arrow/pull/9602#issuecomment-787457715 https://issues.apache.org/jira/browse/ARROW-11630 This is an automated message from the Apache Git

[GitHub] [arrow] sundy-li opened a new pull request #9602: ARROW-11630: [Rust] Introduce limit option for sort kenerl

2021-02-28 Thread GitBox
sundy-li opened a new pull request #9602: URL: https://github.com/apache/arrow/pull/9602 - Introduce `limit: Option` for sort functions, then we can use [partial_sort](https://crates.io/crates/partial_sort) to achieve better performance in queries with limit & sort. Datafusion can use it

[GitHub] [arrow] jorgecarleitao commented on pull request #9598: ARROW-11804: [Developer] Offer to create JIRA issue

2021-02-28 Thread GitBox
jorgecarleitao commented on pull request #9598: URL: https://github.com/apache/arrow/pull/9598#issuecomment-787455963 @ritchie46 and @elferherrera , I agree with you. Arrow did have a slack channel, but that was closed. See rational here:

[GitHub] [arrow] thamht4190 edited a comment on pull request #8023: ARROW-9318: [C++] Parquet encryption key management

2021-02-28 Thread GitBox
thamht4190 edited a comment on pull request #8023: URL: https://github.com/apache/arrow/pull/8023#issuecomment-787455523 I fixed all the comments in this pull, can you please take a look? @emkornfield @pitrou @bkietz cc @ggershinsky

[GitHub] [arrow] thamht4190 commented on pull request #8023: ARROW-9318: [C++] Parquet encryption key management

2021-02-28 Thread GitBox
thamht4190 commented on pull request #8023: URL: https://github.com/apache/arrow/pull/8023#issuecomment-787455523 I fixed all the comments in this pull, can you please take a look? @emkornfield @pitrou @bkietz This is an

[GitHub] [arrow] wqc200 edited a comment on pull request #9600: ARROW-11822: [Rust][Datafusion] Support case sensitive for function

2021-02-28 Thread GitBox
wqc200 edited a comment on pull request #9600: URL: https://github.com/apache/arrow/pull/9600#issuecomment-787454075 > > > Thanks @wqc200 -- this is great functionality to have. > > I would personally like to have datafusion follow postgres when it comes to case sensitivity

[GitHub] [arrow] wqc200 edited a comment on pull request #9600: ARROW-11822: [Rust][Datafusion] Support case sensitive for function

2021-02-28 Thread GitBox
wqc200 edited a comment on pull request #9600: URL: https://github.com/apache/arrow/pull/9600#issuecomment-787454075 > > > Thanks @wqc200 -- this is great functionality to have. > > I would personally like to have datafusion follow postgres when it comes to case sensitivity

[GitHub] [arrow] wqc200 commented on pull request #9600: ARROW-11822: [Rust][Datafusion] Support case sensitive for function

2021-02-28 Thread GitBox
wqc200 commented on pull request #9600: URL: https://github.com/apache/arrow/pull/9600#issuecomment-787454075 > > > Thanks @wqc200 -- this is great functionality to have. > > I would personally like to have datafusion follow postgres when it comes to case sensitivity (rather

[GitHub] [arrow] wqc200 commented on pull request #9600: ARROW-11822: [Rust][Datafusion] Support case sensitive for function

2021-02-28 Thread GitBox
wqc200 commented on pull request #9600: URL: https://github.com/apache/arrow/pull/9600#issuecomment-787453495 > > > This would be great to have indeed (and start doing some more testing on, I think ATM we are both case sensitive and case insensitive. > > I agree it would be

[GitHub] [arrow] jorgecarleitao commented on a change in pull request #9588: ARROW-11799: [Rust] fix len of string and binary arrays created from unbound iterator

2021-02-28 Thread GitBox
jorgecarleitao commented on a change in pull request #9588: URL: https://github.com/apache/arrow/pull/9588#discussion_r584293489 ## File path: rust/arrow/src/array/array_binary.rs ## @@ -258,6 +258,8 @@ where } } +// calculate actual data_len,

[GitHub] [arrow] elferherrera commented on pull request #9598: ARROW-11804: [Developer] Offer to create JIRA issue

2021-02-28 Thread GitBox
elferherrera commented on pull request #9598: URL: https://github.com/apache/arrow/pull/9598#issuecomment-787450579 I would agree that a discord channel would be easier to follow than the mailing list. It would also help new contributors to get familiar and ask questions that may take a

[GitHub] [arrow] Dandandan commented on pull request #9600: ARROW-11822: [Rust][Datafusion] Support case sensitive for function

2021-02-28 Thread GitBox
Dandandan commented on pull request #9600: URL: https://github.com/apache/arrow/pull/9600#issuecomment-787450447 This would be great to have indeed (and start doing some more testing on, I think ATM we are both case sensitive and case insensitive. I agree it would be best to start

[GitHub] [arrow] jorgecarleitao commented on a change in pull request #9588: ARROW-11799: [Rust] fix len of string and binary arrays created from unbound iterator

2021-02-28 Thread GitBox
jorgecarleitao commented on a change in pull request #9588: URL: https://github.com/apache/arrow/pull/9588#discussion_r584293489 ## File path: rust/arrow/src/array/array_binary.rs ## @@ -258,6 +258,8 @@ where } } +// calculate actual data_len,

[GitHub] [arrow] yordan-pavlov commented on a change in pull request #9588: ARROW-11799: [Rust] fix len of string and binary arrays created from unbound iterator

2021-02-28 Thread GitBox
yordan-pavlov commented on a change in pull request #9588: URL: https://github.com/apache/arrow/pull/9588#discussion_r584292408 ## File path: rust/arrow/src/array/array_binary.rs ## @@ -258,6 +258,8 @@ where } } +// calculate actual data_len,

[GitHub] [arrow] yordan-pavlov commented on a change in pull request #9588: ARROW-11799: [Rust] fix len of string and binary arrays created from unbound iterator

2021-02-28 Thread GitBox
yordan-pavlov commented on a change in pull request #9588: URL: https://github.com/apache/arrow/pull/9588#discussion_r584291630 ## File path: rust/arrow/src/array/array_string.rs ## @@ -205,28 +205,30 @@ where let (_, data_len) = iter.size_hint(); let

[GitHub] [arrow] alamb commented on pull request #9596: ARROW-11495: [Rust] Better numerical_coercion

2021-02-28 Thread GitBox
alamb commented on pull request #9596: URL: https://github.com/apache/arrow/pull/9596#issuecomment-787447714 Thanks @sundy-li -- I will try and review this tomorrow sometime This is an automated message from the Apache Git

[GitHub] [arrow] jorgecarleitao commented on a change in pull request #9588: ARROW-11799: [Rust] fix len of string and binary arrays created from unbound iterator

2021-02-28 Thread GitBox
jorgecarleitao commented on a change in pull request #9588: URL: https://github.com/apache/arrow/pull/9588#discussion_r584290973 ## File path: rust/arrow/src/array/array_string.rs ## @@ -205,28 +205,30 @@ where let (_, data_len) = iter.size_hint(); let

[GitHub] [arrow] alamb commented on a change in pull request #9588: ARROW-11799: [Rust] fix len of string and binary arrays created from unbound iterator

2021-02-28 Thread GitBox
alamb commented on a change in pull request #9588: URL: https://github.com/apache/arrow/pull/9588#discussion_r584290701 ## File path: rust/arrow/src/array/array_binary.rs ## @@ -258,6 +258,8 @@ where } } +// calculate actual data_len, which may

[GitHub] [arrow] alamb commented on pull request #9588: ARROW-11799: [Rust] fix len of string and binary arrays created from unbound iterator

2021-02-28 Thread GitBox
alamb commented on pull request #9588: URL: https://github.com/apache/arrow/pull/9588#issuecomment-787446758 > I have been doing quite a lot of profiling and benchmarking in the past few weeks on loading string arrays from parquet files, and yes, going through an intermediate Vec

[GitHub] [arrow] alamb closed pull request #9537: ARROW-11719: [Rust][Datafusion] support creating memory table with merged schema

2021-02-28 Thread GitBox
alamb closed pull request #9537: URL: https://github.com/apache/arrow/pull/9537 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

[GitHub] [arrow] alamb closed pull request #9576: ARROW-11821: [Rust] Edit Rust README

2021-02-28 Thread GitBox
alamb closed pull request #9576: URL: https://github.com/apache/arrow/pull/9576 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

[GitHub] [arrow] alamb commented on pull request #9576: ARROW-11821: [Rust] Edit Rust README

2021-02-28 Thread GitBox
alamb commented on pull request #9576: URL: https://github.com/apache/arrow/pull/9576#issuecomment-787444952 The integration test failures look like https://issues.apache.org/jira/browse/ARROW-11717 (since hopefully fixed)

[GitHub] [arrow] alamb commented on a change in pull request #9565: ARROW-11655: [Rust][DataFusion] Postgres String Functions: left, lpad, right, rpad

2021-02-28 Thread GitBox
alamb commented on a change in pull request #9565: URL: https://github.com/apache/arrow/pull/9565#discussion_r584288331 ## File path: rust/datafusion/src/physical_plan/type_coercion.rs ## @@ -168,20 +168,35 @@ fn maybe_data_types( pub fn can_coerce_from(type_into: ,

[GitHub] [arrow] codecov-io edited a comment on pull request #9594: ARROW-11819: [Rust] Add link to the doc

2021-02-28 Thread GitBox
codecov-io edited a comment on pull request #9594: URL: https://github.com/apache/arrow/pull/9594#issuecomment-787054968 # [Codecov](https://codecov.io/gh/apache/arrow/pull/9594?src=pr=h1) Report > Merging [#9594](https://codecov.io/gh/apache/arrow/pull/9594?src=pr=desc) (d06a866) into

[GitHub] [arrow] alamb commented on pull request #9572: ARROW-11779: [Rust] make alloc module public

2021-02-28 Thread GitBox
alamb commented on pull request #9572: URL: https://github.com/apache/arrow/pull/9572#issuecomment-787443809 Thanks @ritchie46 -- the idea of `AlignedVec` is quite cool (something like that would likely be useful for us in IOx when we also want to go back / forth between `Vec` and arrow

[GitHub] [arrow] alamb commented on pull request #9329: ARROW-11511: [Rust] Replace `Arc` by `ArrayData` in all arrays

2021-02-28 Thread GitBox
alamb commented on pull request #9329: URL: https://github.com/apache/arrow/pull/9329#issuecomment-787443066 Thanks @nevi-me . Let me know if there is anything I can do to help This is an automated message from the Apache

[GitHub] [arrow] alamb commented on pull request #9598: ARROW-11804: [Developer] Offer to create JIRA issue

2021-02-28 Thread GitBox
alamb commented on pull request #9598: URL: https://github.com/apache/arrow/pull/9598#issuecomment-787442027 > In the past I've asked something on the mailing list and on a JIRA issue and did not get any response. Is there at any time something considered as a chat/ discussions forum like

[GitHub] [arrow] alamb commented on pull request #9523: ARROW-11687: [Rust][DataFusion] RepartitionExec Hanging

2021-02-28 Thread GitBox
alamb commented on pull request #9523: URL: https://github.com/apache/arrow/pull/9523#issuecomment-787441566 @edrevo / @seddonm1 I am about to run out of time this morning for removing crossbeam. However, I plan to get to it over the next few days

[GitHub] [arrow] github-actions[bot] commented on pull request #9601: ARROW-11825: [Rust][DataFusion] Add mimalloc as options to benchmarks

2021-02-28 Thread GitBox
github-actions[bot] commented on pull request #9601: URL: https://github.com/apache/arrow/pull/9601#issuecomment-787429360 https://issues.apache.org/jira/browse/ARROW-11825 This is an automated message from the Apache Git

[GitHub] [arrow] Dandandan opened a new pull request #9601: ARROW-11825: [Rust][DataFusion] Add mimalloc as options to benchmarks

2021-02-28 Thread GitBox
Dandandan opened a new pull request #9601: URL: https://github.com/apache/arrow/pull/9601 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

[GitHub] [arrow] alamb commented on pull request #9593: ARROW-11717: [Integration] Fix intermittent flight integration failures with rust

2021-02-28 Thread GitBox
alamb commented on pull request #9593: URL: https://github.com/apache/arrow/pull/9593#issuecomment-787429270 Thanks @alamb ! This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] [arrow] ritchie46 commented on pull request #9598: ARROW-11804: [Developer] Offer to create JIRA issue

2021-02-28 Thread GitBox
ritchie46 commented on pull request #9598: URL: https://github.com/apache/arrow/pull/9598#issuecomment-787427016 I think this is a good idea, if feels mechanical :). Piggybacking a bit on this on communications in general. I find the level of entry (asides from PRs quite high). In

[GitHub] [arrow] nevi-me commented on pull request #9592: ARROW-11803: [Rust] [Parquet] Support v2 LogicalType

2021-02-28 Thread GitBox
nevi-me commented on pull request #9592: URL: https://github.com/apache/arrow/pull/9592#issuecomment-787419699 > LGTM. I am not very familiar with the codebase, are there integration tests to verify that the code with the new changes can read the file written by the previous version and

[GitHub] [arrow] Dandandan commented on a change in pull request #9573: ARROW-11783: [Rust] Proposal for RFCs in Rust Arrow

2021-02-28 Thread GitBox
Dandandan commented on a change in pull request #9573: URL: https://github.com/apache/arrow/pull/9573#discussion_r584260452 ## File path: rust/rfcs/-template.md ## @@ -0,0 +1,27 @@ +- Feature Name: (fill me in with a unique ident, `my_awesome_feature`) Review comment:

[GitHub] [arrow] nevi-me closed pull request #9534: ARROW-11707: [Rust] support CSV schema inference without file IO

2021-02-28 Thread GitBox
nevi-me closed pull request #9534: URL: https://github.com/apache/arrow/pull/9534 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

[GitHub] [arrow] nevi-me commented on a change in pull request #9592: ARROW-11803: [Rust] [Parquet] Support v2 LogicalType

2021-02-28 Thread GitBox
nevi-me commented on a change in pull request #9592: URL: https://github.com/apache/arrow/pull/9592#discussion_r584257095 ## File path: rust/parquet/src/schema/types.rs ## @@ -1035,22 +1082,26 @@ fn to_thrift_helper(schema: , elements: Vec) {

[GitHub] [arrow] github-actions[bot] commented on pull request #9600: ARROW-11822: [Rust] Support case sensitive for function

2021-02-28 Thread GitBox
github-actions[bot] commented on pull request #9600: URL: https://github.com/apache/arrow/pull/9600#issuecomment-787415485 https://issues.apache.org/jira/browse/ARROW-11822 This is an automated message from the Apache Git

[GitHub] [arrow] wqc200 opened a new pull request #9600: ARROW-11822: [Rust] Support case sensitive for function

2021-02-28 Thread GitBox
wqc200 opened a new pull request #9600: URL: https://github.com/apache/arrow/pull/9600 SELECT database() and SELECT DATABASE () are the same and can be queried normally This is an automated message from the Apache Git