Re: [VOTE][RUST] Release Apache Arrow Rust 24.0.0 RC1

2022-09-30 Thread L. C. Hsieh
+1 (binding) Verified on M1 Mac. Thanks, Andrew! On Fri, Sep 30, 2022 at 2:26 PM Jeremy Dyer wrote: > > +1 (non-binding) > > Confirmed on Ubuntu 22.04.1 LTS > > Thank you Andrew! > > On Fri, Sep 30, 2022 at 4:52 PM Andy Grove wrote: > > > +1 (binding) > > > > Verified on Ubuntu 20.04.4 LTS > >

Re: [VOTE][RUST] Release Apache Arrow Rust 24.0.0 RC1

2022-09-30 Thread Jeremy Dyer
+1 (non-binding) Confirmed on Ubuntu 22.04.1 LTS Thank you Andrew! On Fri, Sep 30, 2022 at 4:52 PM Andy Grove wrote: > +1 (binding) > > Verified on Ubuntu 20.04.4 LTS > > Thanks, Andrew! > > On Fri, Sep 30, 2022 at 1:41 PM Andrew Lamb wrote: > > > Hi, > > > > I would like to propose a release

Re: [VOTE][RUST] Release Apache Arrow Rust 24.0.0 RC1

2022-09-30 Thread Andy Grove
+1 (binding) Verified on Ubuntu 20.04.4 LTS Thanks, Andrew! On Fri, Sep 30, 2022 at 1:41 PM Andrew Lamb wrote: > Hi, > > I would like to propose a release of Apache Arrow Rust Implementation, > version 24.0.0. > > This release candidate is based on commit: > 6477db16ca051b656bc0fe1f11bca85a23d

[VOTE][RUST] Release Apache Arrow Rust 24.0.0 RC1

2022-09-30 Thread Andrew Lamb
Hi, I would like to propose a release of Apache Arrow Rust Implementation, version 24.0.0. This release candidate is based on commit: 6477db16ca051b656bc0fe1f11bca85a23dbcd14 [1] The proposed release tarball and signatures are hosted at [2]. The changelog is located at [3]. Please download, ve

Re: [Java] UTF-16 support for VarCharVectors

2022-09-30 Thread David Li
Also, the driver shouldn't assume UTF-8 (or any encoding) when constructing String from a Binary vector, since that defeats the point of a binary vector! Perhaps this should somehow be configurable (though having a lot of little configuration options is also not ideal). A parameterized extension

Re: [Java] UTF-16 support for VarCharVectors

2022-09-30 Thread Antoine Pitrou
Le 30/09/2022 à 18:57, Kevin Bambrick a écrit : The issue I am facing is sending a UTF-16 string over the wire. Ok, then you can just transcode the strings before sending them as String, *or* you can send them as Binary (not String). Where do these UTF-16 strings come from? > What would t

Re: [Java] UTF-16 support for VarCharVectors

2022-09-30 Thread Kevin Bambrick
The issue I am facing is sending a UTF-16 string over the wire. The application I am working on needs to support UTF-16 strings. The specific issue I am stuck on is integrating with the flight SQL driver (experimentally working on uptaking it for when its released). Right now in my implementation o

Re: [ANNOUNCE] New Arrow PMC member: Raphael Taylor-Davies

2022-09-30 Thread Daniël Heres
Congratulations Raphael! On Fri, Sep 30, 2022, 17:02 Wang Xudong wrote: > Congratulations, Raphael! > > Matthew Turner 于2022年9月22日周四 05:59写道: > > > Congratulations, Raphael! > > > > -Original Message- > > From: Matthew Topol > > Sent: Wednesday, September 21, 2022 4:17 PM > > To: dev@a

Re: [ANNOUNCE] New Arrow PMC member: Raphael Taylor-Davies

2022-09-30 Thread Wang Xudong
Congratulations, Raphael! Matthew Turner 于2022年9月22日周四 05:59写道: > Congratulations, Raphael! > > -Original Message- > From: Matthew Topol > Sent: Wednesday, September 21, 2022 4:17 PM > To: dev@arrow.apache.org > Subject: Re: [ANNOUNCE] New Arrow PMC member: Raphael Taylor-Davies > > Con

[Release] Blog Post PR

2022-09-30 Thread Jacob Wujciak
Hello Everyone, To facilitate timely publishing of the 10.0.0 release blog post we have opened the PR already [1]. We will ping the usual people for the different sections but please feel free to coordinate the details (there is a zulip topic [2]). Thanks for the great work so far, looking forwar

Re: [DISCUSS][C++] C++ API as a user-facing API

2022-09-30 Thread Antoine Pitrou
On Thu, 29 Sep 2022 11:19:44 -0700 Will Jones wrote: > In a discussion about new additions to C++ docs, someone had a question: > Should we even be documenting this? > > Long-time contributors to Arrow C++ noted that many parts were written > without the intention that those APIs would not be use

Re: [Java] UTF-16 support for VarCharVectors

2022-09-30 Thread Antoine Pitrou
On Thu, 29 Sep 2022 15:19:59 -0400 Larry White wrote: > Interesting. This doesn't seem to be a Java issue, per se then. I've seen > admonations in various Arrow Java threads to always specify the Charset for > the conversion - and so assumed more than one Charset was legal - and have > written Arr