This is an automated email from the ASF dual-hosted git repository.

apitrou pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.


    from bb4f2a0  ARROW-9963: [Python] Recognize datetime.timezone.utc as UTC 
on conversion python->pyarrow
     add 16412a1  ARROW-10328: [C++] Vendor fast_float number parsing library

No new revisions were added by this update.

Summary of changes:
 LICENSE.txt                                        |   8 +
 cpp/src/arrow/util/value_parsing.cc                |  61 +-
 cpp/src/arrow/vendored/fast_float/README.md        |   9 +
 cpp/src/arrow/vendored/fast_float/ascii_number.h   | 313 ++++++++++
 .../arrow/vendored/fast_float/decimal_to_binary.h  | 167 +++++
 cpp/src/arrow/vendored/fast_float/fast_float.h     |  47 ++
 cpp/src/arrow/vendored/fast_float/fast_table.h     | 691 +++++++++++++++++++++
 cpp/src/arrow/vendored/fast_float/float_common.h   | 263 ++++++++
 cpp/src/arrow/vendored/fast_float/parse_number.h   | 118 ++++
 cpp/src/arrow/vendored/fast_float/thompson_tao.h   | 375 +++++++++++
 10 files changed, 1996 insertions(+), 56 deletions(-)
 create mode 100644 cpp/src/arrow/vendored/fast_float/README.md
 create mode 100644 cpp/src/arrow/vendored/fast_float/ascii_number.h
 create mode 100644 cpp/src/arrow/vendored/fast_float/decimal_to_binary.h
 create mode 100644 cpp/src/arrow/vendored/fast_float/fast_float.h
 create mode 100644 cpp/src/arrow/vendored/fast_float/fast_table.h
 create mode 100644 cpp/src/arrow/vendored/fast_float/float_common.h
 create mode 100644 cpp/src/arrow/vendored/fast_float/parse_number.h
 create mode 100644 cpp/src/arrow/vendored/fast_float/thompson_tao.h

Reply via email to