[jira] [Created] (ARROW-15790) field's metadata is not write into Parquet file

2022-02-25 Thread Sifang Li (Jira)
Sifang Li created ARROW-15790:
-

 Summary: field's metadata is not write into Parquet file
 Key: ARROW-15790
 URL: https://issues.apache.org/jira/browse/ARROW-15790
 Project: Apache Arrow
  Issue Type: Bug
 Environment: Ubuntu
Reporter: Sifang Li


I used this code to test the metadata write into file and read back behavior of 
parquet  file:

[https://gist.github.com/dantrim/33f9f14d0b2d3ec45c022aa05f7a45ee]

 

The generated file does not have metadata when I read the file in using code 
below and print it out: 
 
{quote}std::shared_ptr infile;
PARQUET_ASSIGN_OR_THROW(infile,
arrow::io::ReadableFile::Open("./test.parquet", arrow::default_memory_pool()));

std::unique_ptr reader;
PARQUET_THROW_NOT_OK(
parquet::arrow::OpenFile(infile, arrow::default_memory_pool(), ));
std::shared_ptr table;
PARQUET_THROW_NOT_OK(reader->ReadTable());
EXPECT_EQ(frameCount, table->num_rows());
std::cout<<"==="ToString(true) <

[GitHub] [arrow-julia] kou closed issue #288: Implement release verification script

2022-02-25 Thread GitBox


kou closed issue #288:
URL: https://github.com/apache/arrow-julia/issues/288


   


-- 
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: issues-unsubscr...@arrow.apache.org

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




[jira] [Created] (ARROW-15789) [C++] Update OpenTelemetry to v1.2.0

2022-02-25 Thread David Li (Jira)
David Li created ARROW-15789:


 Summary: [C++] Update OpenTelemetry to v1.2.0
 Key: ARROW-15789
 URL: https://issues.apache.org/jira/browse/ARROW-15789
 Project: Apache Arrow
  Issue Type: Improvement
  Components: C++
Reporter: David Li
Assignee: David Li


We're currently on v1.1.0 and there were some minor API changes in v1.1.1.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Created] (ARROW-15788) [C++][FlightRPC] Support alternative transports in the Flight benchmark

2022-02-25 Thread David Li (Jira)
David Li created ARROW-15788:


 Summary: [C++][FlightRPC] Support alternative transports in the 
Flight benchmark
 Key: ARROW-15788
 URL: https://issues.apache.org/jira/browse/ARROW-15788
 Project: Apache Arrow
  Issue Type: Improvement
  Components: C++, FlightRPC
Reporter: David Li
Assignee: David Li


A follow-up to ARROW-15282.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[GitHub] [arrow-julia] quinnj closed issue #287: Implement release script

2022-02-25 Thread GitBox


quinnj closed issue #287:
URL: https://github.com/apache/arrow-julia/issues/287


   


-- 
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: issues-unsubscr...@arrow.apache.org

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




[jira] [Created] (ARROW-15787) [C++] Temporal floor/ceil/round kernels could be optimised with templating

2022-02-25 Thread Rok Mihevc (Jira)
Rok Mihevc created ARROW-15787:
--

 Summary: [C++] Temporal floor/ceil/round kernels could be 
optimised with templating
 Key: ARROW-15787
 URL: https://issues.apache.org/jira/browse/ARROW-15787
 Project: Apache Arrow
  Issue Type: Improvement
Reporter: Rok Mihevc


[CeilTemporal, FloorTemporal, 
RoundTemporal|https://github.com/apache/arrow/blob/master/cpp/src/arrow/compute/kernels/scalar_temporal_unary.cc#L728-L980]
 kernels could probably be templated in a clean way. They also execute a switch 
statement for every call instead of creating an operator at kernel call time 
and only running that.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)