Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

apache-arrow-devel-14.0.2-1.1 RPM for s390x

From OpenSuSE Ports Tumbleweed for s390x

Name: apache-arrow-devel Distribution: openSUSE:Factory:zSystems
Version: 14.0.2 Vendor: openSUSE
Release: 1.1 Build date: Tue Jan 16 22:10:20 2024
Group: Development/Libraries/C and C++ Build host: s390zl25
Size: 4099516 Source RPM: apache-arrow-14.0.2-1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://arrow.apache.org/
Summary: Development platform for in-memory data - development files
Apache Arrow is a cross-language development platform for in-memory
data. It specifies a standardized language-independent columnar memory
format for flat and hierarchical data, organized for efficient
analytic operations on modern hardware. It also provides computational
libraries and zero-copy streaming messaging and interprocess
communication.

This package provides the development libraries and headers for
Apache Arrow.

Provides

Requires

License

Apache-2.0 AND BSD-3-Clause AND BSD-2-Clause AND MIT

Changelog

* Mon Jan 15 2024 Ben Greiner <code@bnavigator.de>
  - Update to 14.0.2
    [#]# New Features and Improvements
    * GH-38449 - [Release][Go][macOS] Use local test data if possible
      (#38450)
    * GH-38591 - [Parquet][C++] Remove redundant open calls in
      ParquetFileFormat::GetReaderAsync (#38621)
    [#]# Bug Fixes
    * GH-38345 - [Release] Use local test data for verification if
      possible (#38362)
    * GH-38438 - [C++] Dataset: Trying to fix the async bug in
      Parquet dataset (#38466)
    * GH-38577 - Reading parquet file behavior change from 13.0.0 to
      14.0.0
    * GH-38618 - [C++] S3FileSystem: fix regression in deleting
      explicitly created sub-directories (#38845)
    * GH-38861 - [C++] Add missing “-framework Security” to
      Libs.private in arrow.pc (#38869)
    * GH-39072 - [Release][CI] Python3.11-devel is required for the
      verification job on AlmaLinux 8 (#39073)
    * GH-39074 - [Release][Packaging] Use UTF-8 explicitly for KEYS
      (#39082)
* Thu Jan 11 2024 pgajdos@suse.com
  - disable some tests for s390x [bsc#1218592]
* Mon Nov 13 2023 Ondřej Súkup <mimi.vx@gmail.com>
  - update 14.0.1
    * GH-38431 - [Python][CI] Update fs.type_name checks for s3fs tests
    * GH-38607 - [Python] Disable PyExtensionType autoload
  - update to 14.0.1
    * very long list of changes can be found here:
    https://arrow.apache.org/release/14.0.0.html
* Fri Aug 25 2023 Ben Greiner <code@bnavigator.de>
  - Update to 13.0.0
    [#]# Acero
    * Handling of unaligned buffers is input nodes can be configured
      programmatically or by setting the environment variable
      ACERO_ALIGNMENT_HANDLING. The default behavior is to warn when
      an unaligned buffer is detected GH-35498.
    [#]# Compute
    * Several new functions have been added:
    - aggregate functions “first”, “last”, “first_last” GH-34911;
    - vector functions “cumulative_prod”, “cumulative_min”,
      “cumulative_max” GH-32190;
    - vector function “pairwise_diff” GH-35786.
    * Sorting now works on dictionary arrays, with a much better
      performance than the naive approach of sorting the decoded
      dictionary GH-29887. Sorting also works on struct arrays, and
      nested sort keys are supported using FieldRed GH-33206.
    * The check_overflow option has been removed from
      CumulativeSumOptions as it was redundant with the availability
      of two different functions: “cumulative_sum” and
      “cumulative_sum_checked” GH-35789.
    * Run-end encoded filters are efficiently supported GH-35749.
    * Duration types are supported with the “is_in” and “index_in”
      functions GH-36047. They can be multiplied with all integer
      types GH-36128.
    * “is_in” and “index_in” now cast their inputs more flexibly:
      they first attempt to cast the value set to the input type,
      then in the other direction if the former fails GH-36203.
    * Multiple bugs have been fixed in “utf8_slice_codeunits” when
      the stop option is omitted GH-36311.
    [#]# Dataset
    * A custom schema can now be passed when writing a dataset
      GH-35730. The custom schema can alter nullability or metadata
      information, but is not allowed to change the datatypes
      written.
    [#]# Filesystems
    * The S3 filesystem now writes files in equal-sized chunks, for
      compatibility with Cloudflare’s “R2” Storage GH-34363.
    * A long-standing issue where S3 support could crash at shutdown
      because of resources still being alive after S3 finalization
      has been fixed GH-36346. Now, attempts to use S3 resources
      (such as making filesystem calls) after S3 finalization should
      result in a clean error.
    * The GCS filesystem accepts a new option to set the project id
      GH-36227.
    [#]# IPC
    * Nullability and metadata information for sub-fields of map
      types is now preserved when deserializing Arrow IPC GH-35297.
    [#]# Orc
    * The Orc adapter now maps Arrow field metadata to Orc type
      attributes when writing, and vice-versa when reading GH-35304.
    [#]# Parquet
    * It is now possible to write additional metadata while a
      ParquetFileWriter is open GH-34888.
    * Writing a page index can be enabled selectively per-column
      GH-34949. In addition, page header statistics are not written
      anymore if the page index is enabled for the given column
      GH-34375, as the information would be redundant and less
      efficiently accessed.
    * Parquet writer properties allow specifying the sorting columns
      GH-35331. The user is responsible for ensuring that the data
      written to the file actually complies with the given sorting.
    * CRC computation has been implemented for v2 data pages
      GH-35171. It was already implemented for v1 data pages.
    * Writing compliant nested types is now enabled by default
      GH-29781. This should not have any negative implication.
    * Attempting to load a subset of an Arrow extension type is now
      forbidden GH-20385. Previously, if an extension type’s storage
      is nested (for example a “Point” extension type backed by a
      struct<x: float64, y: float64>), it was possible to load
      selectively some of the columns of the storage type.
    [#]# Substrait
    * Support for various functions has been added: “stddev”,
      “variance”, “first”, “last” (GH-35247, GH-35506).
    * Deserializing sorts is now supported GH-32763. However, some
      features, such as clustered sort direction or custom sort
      functions, are not implemented.
    [#]# Miscellaneous
    * FieldRef sports additional methods to get a flattened version
      of nested fields GH-14946. Compared to their non-flattened
      counterparts, the methods GetFlattened, GetAllFlattened,
      GetOneFlattened and GetOneOrNoneFlattened combine a child’s
      null bitmap with its ancestors’ null bitmaps such as to compute
      the field’s overall logical validity bitmap.
    * In other words, given the struct array [null, {'x': null},
      {'x': 5}], FieldRef("x")::Get might return [0, null, 5] while
      FieldRef("y")::GetFlattened will always return [null, null, 5].
    * Scalar::hash() has been fixed for sliced nested arrays
      GH-35360.
    * A new floating-point to decimal conversion algorithm exhibits
      much better precision GH-35576.
    * It is now possible to cast between scalars of different
      list-like types GH-36309.
* Mon Jun 12 2023 Ben Greiner <code@bnavigator.de>
  - Update to 12.0.1
    * [GH-35423] - [C++][Parquet] Parquet PageReader Force
      decompression buffer resize smaller (#35428)
    * [GH-35498] - [C++] Relax EnsureAlignment check in Acero from
      requiring 64-byte aligned buffers to requiring value-aligned
      buffers (#35565)
    * [GH-35519] - [C++][Parquet] Fixing exception handling in parquet
      FileSerializer (#35520)
    * [GH-35538] - [C++] Remove unnecessary status.h include from
      protobuf (#35673)
    * [GH-35730] - [C++] Add the ability to specify custom schema on a
      dataset write (#35860)
    * [GH-35850] - [C++] Don't disable optimization with
      RelWithDebInfo (#35856)
  - Drop cflags.patch -- fixed upstream
* Thu May 18 2023 Ben Greiner <code@bnavigator.de>
  - Update to 12.0.0
    * Run-End Encoded Arrays have been implemented and are accessible
      (GH-32104)
    * The FixedShapeTensor Logical value type has been implemented
      using ExtensionType (GH-15483, GH-34796)
    [#]# Compute
    * New kernel to convert timestamp with timezone to wall time
      (GH-33143)
    * Cast kernels are now built into libarrow by default (GH-34388)
    [#]# Acero
    * Acero has been moved out of libarrow into it’s own shared
      library, allowing for smaller builds of the core libarrow
      (GH-15280)
    * Exec nodes now can have a concept of “ordering” and will reject
      non-sensible plans (GH-34136)
    * New exec nodes: “pivot_longer” (GH-34266), “order_by”
      (GH-34248) and “fetch” (GH-34059)
    * Breaking Change: Reorder output fields of “group_by” node so
      that keys/segment keys come before aggregates (GH-33616)
    [#]# Substrait
    * Add support for the round function GH-33588
    * Add support for the cast expression element GH-31910
    * Added API reference documentation GH-34011
    * Added an extension relation to support segmented aggregation
      GH-34626
    * The output of the aggregate relation now conforms to the spec
      GH-34786
    [#]# Parquet
    * Added support for DeltaLengthByteArray encoding to the Parquet
      writer (GH-33024)
    * NaNs are correctly handled now for Parquet predicate push-downs
      (GH-18481)
    * Added support for reading Parquet page indexes (GH-33596) and
      writing page indexes (GH-34053)
    * Parquet writer can write columns in parallel now (GH-33655)
    * Fixed incorrect number of rows in Parquet V2 page headers
      (GH-34086)
    * Fixed incorrect Parquet page null_count when stats are disabled
      (GH-34326)
    * Added support for reading BloomFilters to the Parquet Reader
      (GH-34665)
    * Parquet File-writer can now add additional key-value metadata
      after it has been opened (GH-34888)
    * Breaking Change: The default row group size for the Arrow
      writer changed from 64Mi rows to 1Mi rows. GH-34280
    [#]# ORC
    * Added support for the union type in ORC writer (GH-34262)
    * Fixed ORC CHAR type mapping with Arrow (GH-34823)
    * Fixed timestamp type mapping between ORC and arrow (GH-34590)
    [#]# Datasets
    * Added support for reading JSON datasets (GH-33209)
    * Dataset writer now supports specifying a function callback to
      construct the file name in addition to the existing file name
      template (GH-34565)
    [#]# Filesystems
    * GcsFileSystem::OpenInputFile avoids unnecessary downloads
      (GH-34051)
    [#]# Other changes
    * Convenience Append(std::optional...) methods have been added to
      array builders
      ([GH-14863](https://github.com/apache/arrow/issues/14863))
    * A deprecated OpenTelemetry header was removed from the Flight
      library (GH-34417)
    * Fixed crash in “take” kernels on ExtensionArrays with an
      underlying dictionary type (GH-34619)
    * Fixed bug where the C-Data bridge did not preserve nullability
      of map values on import (GH-34983)
    * Added support for EqualOptions to RecordBatch::Equals
      (GH-34968)
    * zstd dependency upgraded to v1.5.5 (GH-34899)
    * Improved handling of “logical” nulls such as with union and
      RunEndEncoded arrays (GH-34361)
    * Fixed incorrect handling of uncompressed body buffers in IPC
      reader, added IpcWriteOptions::min_space_savings for optional
      compression optimizations (GH-15102)
* Mon Apr 03 2023 Andreas Schwab <schwab@suse.de>
  - cflags.patch: fix option order to compile with optimisation
  - Adjust constraints
* Wed Mar 29 2023 Ben Greiner <code@bnavigator.de>
  - Remove gflags-static. It was only needed due to a packaging error
    with gflags which is about to be fixed in Tumbleweed
  - Disable build of the jemalloc memory pool backend
    * It requires every consuming application to LD_PRELOAD
      libjemalloc.so.2, even when it is not set as the default memory
      pool, due to static TLS block allocation errors
    * Usage of the bundled jemalloc as a workaround is not desired
      (gh#apache/arrow#13739)
    * jemalloc does not seem to have a clear advantage over the
      system glibc allocator:
      https://ursalabs.org/blog/2021-r-benchmarks-part-1
    * This overrides the default behavior documented in
      https://arrow.apache.org/docs/cpp/memory.html#default-memory-pool
* Sun Mar 12 2023 Ben Greiner <code@bnavigator.de>
  - Update to v11.0.0
    * ARROW-4709 - [C++] Optimize for ordered JSON fields (#14100)
    * ARROW-11776 - [C++][Java] Support parquet write from ArrowReader
      to file (#14151)
    * ARROW-13938 - [C++] Date and datetime types should autocast from
      strings
    * ARROW-14161 - [C++][Docs] Improve Parquet C++ docs (#14018)
    * ARROW-14999 - [C++] Optional field name equality checks for map
      and list type (#14847)
    * ARROW-15538 - [C++] Expanding coverage of math functions from
      Substrait to Acero (#14434)
    * ARROW-15592 - [C++] Add support for custom output field names in
      a substrait::PlanRel (#14292)
    * ARROW-15732 - [C++] Do not use any CPU threads in execution plan
      when use_threads is false (#15104)
    * ARROW-16782 - [Format] Add REE definitions to FlatBuffers
      (#14176)
    * ARROW-17144 - [C++][Gandiva] Add sqrt function (#13656)
    * ARROW-17301 - [C++] Implement compute function "binary_slice"
      (#14550)
    * ARROW-17509 - [C++] Simplify async scheduler by removing the
      need to call End (#14524)
    * ARROW-17520 - [C++] Implement SubStrait SetRel (UnionAll)
      (#14186)
    * ARROW-17610 - [C++] Support additional source types in
      SourceNode (#14207)
    * ARROW-17613 - [C++] Add function execution API for a
      preconfigured kernel (#14043)
    * ARROW-17640 - [C++] Add File Handling Test cases for GlobFile
      handling in Substrait Read (#14132)
    * ARROW-17798 - [C++][Parquet] Add DELTA_BINARY_PACKED encoder to
      Parquet writer (#14191)
    * ARROW-17825 - [C++] Allow the possibility to write several
      tables in ORCFileWriter (#14219)
    * ARROW-17836 - [C++] Allow specifying alignment of buffers
      (#14225)
    * ARROW-17837 - [C++][Acero] Create ExecPlan-owned QueryContext
      that will store a plan's shared data structures (#14227)
    * ARROW-17859 - [C++] Use self-pipe in signal-receiving StopSource
      (#14250)
    * ARROW-17867 - [C++][FlightRPC] Expose bulk parameter binding in
      Flight SQL (#14266)
    * ARROW-17932 - [C++] Implement streaming RecordBatchReader for
      JSON (#14355)
    * ARROW-17960 - [C++][Python] Implement list_slice kernel (#14395)
    * ARROW-17966 - [C++] Adjust to new format for Substrait optional
      arguments (#14415)
    * ARROW-17975 - [C++] Create at-fork facility (#14594)
    * ARROW-17980 - [C++] As-of-Join Substrait extension (#14485)
    * ARROW-17989 - [C++][Python] Enable struct_field kernel to accept
      string field names (#14495)
    * ARROW-18008 - [Python][C++] Add use_threads to
      run_substrait_query
    * ARROW-18051 - [C++] Enable tests skipped by ARROW-16392 (#14425)
    * ARROW-18095 - [CI][C++][MinGW] All tests exited with 0xc0000139
    * ARROW-18113 - [C++] Add RandomAccessFile::ReadManyAsync (#14723)
    * ARROW-18135 - [C++] Avoid warnings that ExecBatch::length may be
      uninitialized (#14480)
    * ARROW-18144 - [C++] Improve JSONTypeError error message in
      testing (#14486)
    * ARROW-18184 - [C++] Improve JSON parser benchmarks (#14552)
    * ARROW-18206 - [C++][CI] Add a nightly build for C++20
      compilation (#14571)
    * ARROW-18235 - [C++][Gandiva] Fix the like function
      implementation for escape chars (#14579)
    * ARROW-18249 - [C++] Update vcpkg port to arrow 10.0.0
    * ARROW-18253 - [C++][Parquet] Add additional bounds safety checks
      (#14592)
    * ARROW-18259 - [C++][CMake] Add support for system Thrift CMake
      package (#14597)
    * ARROW-18280 - [C++][Python] Support slicing to end in list_slice
      kernel (#14749)
    * ARROW-18282 - [C++][Python] Support step >= 1 in list_slice
      kernel (#14696)
    * ARROW-18287 - [C++][CMake] Add support for Brotli/utf8proc
      provided by vcpkg (#14609)
    * ARROW-18342 - [C++] AsofJoinNode support for Boolean data field
      (#14658)
    * ARROW-18350 - [C++] Use std::to_chars instead of std::to_string
      (#14666)
    * ARROW-18367 - [C++] Enable the creation of named table relations
      (#14681)
    * ARROW-18373 - Fix component drop-down, add license text (#14688)
    * ARROW-18377 - MIGRATION: Automate component labels from issue
      form content (#15245)
    * ARROW-18395 - [C++] Move select-k implementation into separate
      module
    * ARROW-18402 - [C++] Expose DeclarationInfo (#14765)
    * ARROW-18406 - [C++] Can't build Arrow with Substrait on Ubuntu
      20.04 (#14735)
    * ARROW-18409 - [GLib][Plasma] Suppress deprecated warning in
      building plasma-glib (#14739)
    * ARROW-18413 - [C++][Parquet] Expose page index info from
      ColumnChunkMetaData (#14742)
    * ARROW-18419 - [C++] Update vendored fast_float (#14817)
    * ARROW-18420 - [C++][Parquet] Introduce ColumnIndex & OffsetIndex
      (#14803)
    * ARROW-18421 - [C++][ORC] Add accessor for stripe information in
      reader (#14806)
    * ARROW-18427 - [C++] Support negative tolerance in AsofJoinNode
      (#14934)
    * ARROW-18435 - [C++][Java] Update ORC to 1.8.1 (#14942)
    * GH-14869 - [C++] Add Cflags.private defining _STATIC to .pc.in.
      (#14900)
    * GH-14920 - [C++][CMake] Add missing -latomic to Arrow CMake
      package (#15251)
    * GH-14937 - [C++] Add rank kernel benchmarks (#14938)
    * GH-14951 - [C++][Parquet] Add benchmarks for DELTA_BINARY_PACKED
      encoding (#15140)
    * GH-15072 - [C++] Move the round functionality into a separate
      module (#15073)
    * GH-15074 - [Parquet][C++] change 16-bit page_ordinal to 32-bit
      (#15182)
    * GH-15096 - [C++] Substrait ProjectRel Emit Optimization (#15097)
    * GH-15100 - [C++][Parquet] Add benchmark for reading strings from
      Parquet (#15101)
    * GH-15151 - [C++] Adding RecordBatchReaderSource to solve an
      issue in R API (#15183)
    * GH-15185 - [C++][Parquet] Improve documentation for Parquet
      Reader column_indices (#15184)
    * GH-15199 - [C++][Substrait] Allow
      AGGREGATION_INVOCATION_UNSPECIFIED as valid invocation (#15198)
    * GH-15200 - [C++] Created benchmarks for round kernels. (#15201)
    * GH-15216 - [C++][Parquet] Parquet writer accepts RecordBatch
      (#15240)
    * GH-15226 - [C++] Add DurationType to hash kernels (#33685)
    * GH-15237 - [C++] Add ::arrow::Unreachable() using
      std::string_view (#15238)
    * GH-15239 - [C++][Parquet] Parquet writer writes decimal as
      int32/64 (#15244)
    * GH-15290 - [C++][Compute] Optimize IfElse kernel AAS/ASA case
      when the scalar is null (#15291)
    * GH-33607 - [C++] Support optional additional arguments for
      inline visit functions (#33608)
    * GH-33657 - [C++] arrow-dataset.pc doesn't depend on parquet.pc
      without ARROW_PARQUET=ON (#33665)
    * PARQUET-2179 - [C++][Parquet] Add a test for skipping repeated
      fields (#14366)
    * PARQUET-2188 - [parquet-cpp] Add SkipRecords API to RecordReader
      (#14142)
    * PARQUET-2204 - [parquet-cpp] TypedColumnReaderImpl::Skip should
      reuse scratch space (#14509)
    * PARQUET-2206 - [parquet-cpp] Microbenchmark for ColumnReader
      ReadBatch and Skip (#14523)
    * PARQUET-2209 - [parquet-cpp] Optimize skip for the case that
      number of values to skip equals page size (#14545)
    * PARQUET-2210 - [C++][Parquet] Skip pages based on header
      metadata using a callback (#14603)
    * PARQUET-2211 - [C++] Print ColumnMetaData.encoding_stats field
      (#14556)
  - Remove unused python3-arrow package declaration
    * Add options as recommended for python support
  - Provide test data for unittests
  - Don't use system jemalloc but bundle it in order to avoid
    static TLS errors in consuming packages like python-pyarrow
    * gh#apache/arrow#13739
* Sun Aug 28 2022 Stefan Brüns <stefan.bruens@rwth-aachen.de>
  - Revert ccache change, using ccache in a pristine buildroot
    just slows down OBS builds (use --ccache for local builds).
  - Remove unused gflags-static-devel dependency.
* Mon Aug 22 2022 John Vandenberg <jayvdb@gmail.com>
  - Speed up builds with ccache
* Sat Aug 06 2022 Stefan Brüns <stefan.bruens@rwth-aachen.de>
  - Update to v9.0.0
    No (current) changelog provided
  - Spec file cleanup:
    * Remove lots of duplicate, unused, or wrong build dependencies
    * Do not package outdated Readmes and Changelogs
  - Enable tests, disable ones requiring external test data
* Sat Nov 14 2020 John Vandenberg <jayvdb@gmail.com>
  - Update to v2.0.0

Files

/usr/include/arrow
/usr/include/arrow/acero
/usr/include/arrow/acero/accumulation_queue.h
/usr/include/arrow/acero/aggregate_node.h
/usr/include/arrow/acero/api.h
/usr/include/arrow/acero/asof_join_node.h
/usr/include/arrow/acero/benchmark_util.h
/usr/include/arrow/acero/bloom_filter.h
/usr/include/arrow/acero/exec_plan.h
/usr/include/arrow/acero/hash_join.h
/usr/include/arrow/acero/hash_join_dict.h
/usr/include/arrow/acero/hash_join_node.h
/usr/include/arrow/acero/map_node.h
/usr/include/arrow/acero/options.h
/usr/include/arrow/acero/order_by_impl.h
/usr/include/arrow/acero/partition_util.h
/usr/include/arrow/acero/pch.h
/usr/include/arrow/acero/query_context.h
/usr/include/arrow/acero/schema_util.h
/usr/include/arrow/acero/task_util.h
/usr/include/arrow/acero/test_nodes.h
/usr/include/arrow/acero/tpch_node.h
/usr/include/arrow/acero/type_fwd.h
/usr/include/arrow/acero/util.h
/usr/include/arrow/acero/visibility.h
/usr/include/arrow/api.h
/usr/include/arrow/array
/usr/include/arrow/array.h
/usr/include/arrow/array/array_base.h
/usr/include/arrow/array/array_binary.h
/usr/include/arrow/array/array_decimal.h
/usr/include/arrow/array/array_dict.h
/usr/include/arrow/array/array_nested.h
/usr/include/arrow/array/array_primitive.h
/usr/include/arrow/array/array_run_end.h
/usr/include/arrow/array/builder_adaptive.h
/usr/include/arrow/array/builder_base.h
/usr/include/arrow/array/builder_binary.h
/usr/include/arrow/array/builder_decimal.h
/usr/include/arrow/array/builder_dict.h
/usr/include/arrow/array/builder_nested.h
/usr/include/arrow/array/builder_primitive.h
/usr/include/arrow/array/builder_run_end.h
/usr/include/arrow/array/builder_time.h
/usr/include/arrow/array/builder_union.h
/usr/include/arrow/array/concatenate.h
/usr/include/arrow/array/data.h
/usr/include/arrow/array/diff.h
/usr/include/arrow/array/util.h
/usr/include/arrow/array/validate.h
/usr/include/arrow/buffer.h
/usr/include/arrow/buffer_builder.h
/usr/include/arrow/builder.h
/usr/include/arrow/c
/usr/include/arrow/c/abi.h
/usr/include/arrow/c/bridge.h
/usr/include/arrow/c/helpers.h
/usr/include/arrow/chunk_resolver.h
/usr/include/arrow/chunked_array.h
/usr/include/arrow/compare.h
/usr/include/arrow/compute
/usr/include/arrow/compute/api.h
/usr/include/arrow/compute/api_aggregate.h
/usr/include/arrow/compute/api_scalar.h
/usr/include/arrow/compute/api_vector.h
/usr/include/arrow/compute/cast.h
/usr/include/arrow/compute/exec.h
/usr/include/arrow/compute/expression.h
/usr/include/arrow/compute/function.h
/usr/include/arrow/compute/kernel.h
/usr/include/arrow/compute/key_hash.h
/usr/include/arrow/compute/key_map.h
/usr/include/arrow/compute/light_array.h
/usr/include/arrow/compute/ordering.h
/usr/include/arrow/compute/registry.h
/usr/include/arrow/compute/row
/usr/include/arrow/compute/row/grouper.h
/usr/include/arrow/compute/type_fwd.h
/usr/include/arrow/compute/util.h
/usr/include/arrow/config.h
/usr/include/arrow/csv
/usr/include/arrow/csv/api.h
/usr/include/arrow/csv/chunker.h
/usr/include/arrow/csv/column_builder.h
/usr/include/arrow/csv/column_decoder.h
/usr/include/arrow/csv/converter.h
/usr/include/arrow/csv/invalid_row.h
/usr/include/arrow/csv/options.h
/usr/include/arrow/csv/parser.h
/usr/include/arrow/csv/reader.h
/usr/include/arrow/csv/test_common.h
/usr/include/arrow/csv/type_fwd.h
/usr/include/arrow/csv/writer.h
/usr/include/arrow/dataset
/usr/include/arrow/dataset/api.h
/usr/include/arrow/dataset/dataset.h
/usr/include/arrow/dataset/dataset_writer.h
/usr/include/arrow/dataset/discovery.h
/usr/include/arrow/dataset/file_base.h
/usr/include/arrow/dataset/file_csv.h
/usr/include/arrow/dataset/file_ipc.h
/usr/include/arrow/dataset/file_json.h
/usr/include/arrow/dataset/file_orc.h
/usr/include/arrow/dataset/file_parquet.h
/usr/include/arrow/dataset/parquet_encryption_config.h
/usr/include/arrow/dataset/partition.h
/usr/include/arrow/dataset/pch.h
/usr/include/arrow/dataset/plan.h
/usr/include/arrow/dataset/projector.h
/usr/include/arrow/dataset/scanner.h
/usr/include/arrow/dataset/type_fwd.h
/usr/include/arrow/dataset/visibility.h
/usr/include/arrow/datum.h
/usr/include/arrow/device.h
/usr/include/arrow/extension
/usr/include/arrow/extension/fixed_shape_tensor.h
/usr/include/arrow/extension_type.h
/usr/include/arrow/filesystem
/usr/include/arrow/filesystem/api.h
/usr/include/arrow/filesystem/azurefs.h
/usr/include/arrow/filesystem/filesystem.h
/usr/include/arrow/filesystem/gcsfs.h
/usr/include/arrow/filesystem/hdfs.h
/usr/include/arrow/filesystem/localfs.h
/usr/include/arrow/filesystem/mockfs.h
/usr/include/arrow/filesystem/path_util.h
/usr/include/arrow/filesystem/s3_test_util.h
/usr/include/arrow/filesystem/s3fs.h
/usr/include/arrow/filesystem/test_util.h
/usr/include/arrow/filesystem/type_fwd.h
/usr/include/arrow/integration
/usr/include/arrow/integration/json_integration.h
/usr/include/arrow/io
/usr/include/arrow/io/api.h
/usr/include/arrow/io/buffered.h
/usr/include/arrow/io/caching.h
/usr/include/arrow/io/compressed.h
/usr/include/arrow/io/concurrency.h
/usr/include/arrow/io/file.h
/usr/include/arrow/io/hdfs.h
/usr/include/arrow/io/interfaces.h
/usr/include/arrow/io/memory.h
/usr/include/arrow/io/mman.h
/usr/include/arrow/io/slow.h
/usr/include/arrow/io/stdio.h
/usr/include/arrow/io/test_common.h
/usr/include/arrow/io/transform.h
/usr/include/arrow/io/type_fwd.h
/usr/include/arrow/ipc
/usr/include/arrow/ipc/api.h
/usr/include/arrow/ipc/dictionary.h
/usr/include/arrow/ipc/feather.h
/usr/include/arrow/ipc/json_simple.h
/usr/include/arrow/ipc/message.h
/usr/include/arrow/ipc/options.h
/usr/include/arrow/ipc/reader.h
/usr/include/arrow/ipc/test_common.h
/usr/include/arrow/ipc/type_fwd.h
/usr/include/arrow/ipc/util.h
/usr/include/arrow/ipc/writer.h
/usr/include/arrow/json
/usr/include/arrow/json/api.h
/usr/include/arrow/json/chunked_builder.h
/usr/include/arrow/json/chunker.h
/usr/include/arrow/json/converter.h
/usr/include/arrow/json/object_parser.h
/usr/include/arrow/json/object_writer.h
/usr/include/arrow/json/options.h
/usr/include/arrow/json/parser.h
/usr/include/arrow/json/rapidjson_defs.h
/usr/include/arrow/json/reader.h
/usr/include/arrow/json/test_common.h
/usr/include/arrow/json/type_fwd.h
/usr/include/arrow/memory_pool.h
/usr/include/arrow/memory_pool_test.h
/usr/include/arrow/pch.h
/usr/include/arrow/pretty_print.h
/usr/include/arrow/record_batch.h
/usr/include/arrow/result.h
/usr/include/arrow/scalar.h
/usr/include/arrow/sparse_tensor.h
/usr/include/arrow/status.h
/usr/include/arrow/stl.h
/usr/include/arrow/stl_allocator.h
/usr/include/arrow/stl_iterator.h
/usr/include/arrow/table.h
/usr/include/arrow/table_builder.h
/usr/include/arrow/tensor
/usr/include/arrow/tensor.h
/usr/include/arrow/tensor/converter.h
/usr/include/arrow/type.h
/usr/include/arrow/type_fwd.h
/usr/include/arrow/type_traits.h
/usr/include/arrow/util
/usr/include/arrow/util/algorithm.h
/usr/include/arrow/util/align_util.h
/usr/include/arrow/util/aligned_storage.h
/usr/include/arrow/util/async_generator.h
/usr/include/arrow/util/async_generator_fwd.h
/usr/include/arrow/util/async_util.h
/usr/include/arrow/util/base64.h
/usr/include/arrow/util/basic_decimal.h
/usr/include/arrow/util/benchmark_util.h
/usr/include/arrow/util/bit_block_counter.h
/usr/include/arrow/util/bit_run_reader.h
/usr/include/arrow/util/bit_stream_utils.h
/usr/include/arrow/util/bit_util.h
/usr/include/arrow/util/bitmap.h
/usr/include/arrow/util/bitmap_builders.h
/usr/include/arrow/util/bitmap_generate.h
/usr/include/arrow/util/bitmap_ops.h
/usr/include/arrow/util/bitmap_reader.h
/usr/include/arrow/util/bitmap_visit.h
/usr/include/arrow/util/bitmap_writer.h
/usr/include/arrow/util/bitset_stack.h
/usr/include/arrow/util/bpacking.h
/usr/include/arrow/util/bpacking64_default.h
/usr/include/arrow/util/bpacking_avx2.h
/usr/include/arrow/util/bpacking_avx512.h
/usr/include/arrow/util/bpacking_default.h
/usr/include/arrow/util/bpacking_neon.h
/usr/include/arrow/util/bpacking_simd128_generated.h
/usr/include/arrow/util/bpacking_simd256_generated.h
/usr/include/arrow/util/bpacking_simd512_generated.h
/usr/include/arrow/util/byte_size.h
/usr/include/arrow/util/byte_stream_split.h
/usr/include/arrow/util/cancel.h
/usr/include/arrow/util/checked_cast.h
/usr/include/arrow/util/compare.h
/usr/include/arrow/util/compression.h
/usr/include/arrow/util/concurrent_map.h
/usr/include/arrow/util/config.h
/usr/include/arrow/util/converter.h
/usr/include/arrow/util/counting_semaphore.h
/usr/include/arrow/util/cpu_info.h
/usr/include/arrow/util/crc32.h
/usr/include/arrow/util/debug.h
/usr/include/arrow/util/decimal.h
/usr/include/arrow/util/delimiting.h
/usr/include/arrow/util/dispatch.h
/usr/include/arrow/util/double_conversion.h
/usr/include/arrow/util/endian.h
/usr/include/arrow/util/formatting.h
/usr/include/arrow/util/functional.h
/usr/include/arrow/util/future.h
/usr/include/arrow/util/hash_util.h
/usr/include/arrow/util/hashing.h
/usr/include/arrow/util/int_util.h
/usr/include/arrow/util/int_util_overflow.h
/usr/include/arrow/util/io_util.h
/usr/include/arrow/util/iterator.h
/usr/include/arrow/util/key_value_metadata.h
/usr/include/arrow/util/launder.h
/usr/include/arrow/util/logging.h
/usr/include/arrow/util/macros.h
/usr/include/arrow/util/map.h
/usr/include/arrow/util/math_constants.h
/usr/include/arrow/util/memory.h
/usr/include/arrow/util/mutex.h
/usr/include/arrow/util/parallel.h
/usr/include/arrow/util/pcg_random.h
/usr/include/arrow/util/print.h
/usr/include/arrow/util/queue.h
/usr/include/arrow/util/range.h
/usr/include/arrow/util/ree_util.h
/usr/include/arrow/util/regex.h
/usr/include/arrow/util/rle_encoding.h
/usr/include/arrow/util/rows_to_batches.h
/usr/include/arrow/util/simd.h
/usr/include/arrow/util/small_vector.h
/usr/include/arrow/util/sort.h
/usr/include/arrow/util/spaced.h
/usr/include/arrow/util/span.h
/usr/include/arrow/util/stopwatch.h
/usr/include/arrow/util/string.h
/usr/include/arrow/util/string_builder.h
/usr/include/arrow/util/task_group.h
/usr/include/arrow/util/tdigest.h
/usr/include/arrow/util/test_common.h
/usr/include/arrow/util/thread_pool.h
/usr/include/arrow/util/time.h
/usr/include/arrow/util/tracing.h
/usr/include/arrow/util/trie.h
/usr/include/arrow/util/type_fwd.h
/usr/include/arrow/util/type_traits.h
/usr/include/arrow/util/ubsan.h
/usr/include/arrow/util/union_util.h
/usr/include/arrow/util/unreachable.h
/usr/include/arrow/util/uri.h
/usr/include/arrow/util/utf8.h
/usr/include/arrow/util/value_parsing.h
/usr/include/arrow/util/vector.h
/usr/include/arrow/util/visibility.h
/usr/include/arrow/util/windows_compatibility.h
/usr/include/arrow/util/windows_fixup.h
/usr/include/arrow/vendored
/usr/include/arrow/vendored/ProducerConsumerQueue.h
/usr/include/arrow/vendored/datetime
/usr/include/arrow/vendored/datetime.h
/usr/include/arrow/vendored/datetime/date.h
/usr/include/arrow/vendored/datetime/ios.h
/usr/include/arrow/vendored/datetime/tz.h
/usr/include/arrow/vendored/datetime/tz_private.h
/usr/include/arrow/vendored/datetime/visibility.h
/usr/include/arrow/vendored/double-conversion
/usr/include/arrow/vendored/double-conversion/bignum-dtoa.h
/usr/include/arrow/vendored/double-conversion/bignum.h
/usr/include/arrow/vendored/double-conversion/cached-powers.h
/usr/include/arrow/vendored/double-conversion/diy-fp.h
/usr/include/arrow/vendored/double-conversion/double-conversion.h
/usr/include/arrow/vendored/double-conversion/double-to-string.h
/usr/include/arrow/vendored/double-conversion/fast-dtoa.h
/usr/include/arrow/vendored/double-conversion/fixed-dtoa.h
/usr/include/arrow/vendored/double-conversion/ieee.h
/usr/include/arrow/vendored/double-conversion/string-to-double.h
/usr/include/arrow/vendored/double-conversion/strtod.h
/usr/include/arrow/vendored/double-conversion/utils.h
/usr/include/arrow/vendored/pcg
/usr/include/arrow/vendored/pcg/pcg_extras.hpp
/usr/include/arrow/vendored/pcg/pcg_random.hpp
/usr/include/arrow/vendored/pcg/pcg_uint128.hpp
/usr/include/arrow/vendored/portable-snippets
/usr/include/arrow/vendored/portable-snippets/debug-trap.h
/usr/include/arrow/vendored/portable-snippets/safe-math.h
/usr/include/arrow/vendored/strptime.h
/usr/include/arrow/vendored/xxhash
/usr/include/arrow/vendored/xxhash.h
/usr/include/arrow/vendored/xxhash/xxhash.h
/usr/include/arrow/visit_array_inline.h
/usr/include/arrow/visit_data_inline.h
/usr/include/arrow/visit_scalar_inline.h
/usr/include/arrow/visit_type_inline.h
/usr/include/arrow/visitor.h
/usr/include/arrow/visitor_generate.h
/usr/lib64/cmake/Arrow
/usr/lib64/cmake/Arrow/ArrowConfig.cmake
/usr/lib64/cmake/Arrow/ArrowConfigVersion.cmake
/usr/lib64/cmake/Arrow/ArrowOptions.cmake
/usr/lib64/cmake/Arrow/ArrowTargets-relwithdebinfo.cmake
/usr/lib64/cmake/Arrow/ArrowTargets.cmake
/usr/lib64/cmake/Arrow/FindBrotliAlt.cmake
/usr/lib64/cmake/Arrow/FindGLOG.cmake
/usr/lib64/cmake/Arrow/FindOpenSSLAlt.cmake
/usr/lib64/cmake/Arrow/FindSnappyAlt.cmake
/usr/lib64/cmake/Arrow/Findlz4Alt.cmake
/usr/lib64/cmake/Arrow/Findre2Alt.cmake
/usr/lib64/cmake/Arrow/Findutf8proc.cmake
/usr/lib64/cmake/Arrow/FindzstdAlt.cmake
/usr/lib64/cmake/Arrow/arrow-config.cmake
/usr/lib64/cmake/ArrowAcero
/usr/lib64/cmake/ArrowAcero/ArrowAceroConfig.cmake
/usr/lib64/cmake/ArrowAcero/ArrowAceroConfigVersion.cmake
/usr/lib64/cmake/ArrowAcero/ArrowAceroTargets-relwithdebinfo.cmake
/usr/lib64/cmake/ArrowAcero/ArrowAceroTargets.cmake
/usr/lib64/cmake/ArrowDataset
/usr/lib64/cmake/ArrowDataset/ArrowDatasetConfig.cmake
/usr/lib64/cmake/ArrowDataset/ArrowDatasetConfigVersion.cmake
/usr/lib64/cmake/ArrowDataset/ArrowDatasetTargets-relwithdebinfo.cmake
/usr/lib64/cmake/ArrowDataset/ArrowDatasetTargets.cmake
/usr/lib64/cmake/ArrowTesting
/usr/lib64/cmake/ArrowTesting/ArrowTestingConfig.cmake
/usr/lib64/cmake/ArrowTesting/ArrowTestingConfigVersion.cmake
/usr/lib64/cmake/ArrowTesting/ArrowTestingTargets-relwithdebinfo.cmake
/usr/lib64/cmake/ArrowTesting/ArrowTestingTargets.cmake
/usr/lib64/cmake/ArrowTesting/FindGTestAlt.cmake
/usr/lib64/libarrow.so
/usr/lib64/libarrow_acero.so
/usr/lib64/libarrow_dataset.so
/usr/lib64/pkgconfig/arrow-acero.pc
/usr/lib64/pkgconfig/arrow-compute.pc
/usr/lib64/pkgconfig/arrow-csv.pc
/usr/lib64/pkgconfig/arrow-dataset.pc
/usr/lib64/pkgconfig/arrow-filesystem.pc
/usr/lib64/pkgconfig/arrow-json.pc
/usr/lib64/pkgconfig/arrow.pc
/usr/share/arrow
/usr/share/arrow/gdb
/usr/share/arrow/gdb/gdb_arrow.py
/usr/share/doc/packages/apache-arrow-devel
/usr/share/doc/packages/apache-arrow-devel/README.md
/usr/share/gdb
/usr/share/gdb/auto-load
/usr/share/gdb/auto-load/usr
/usr/share/gdb/auto-load/usr/lib64
/usr/share/gdb/auto-load/usr/lib64/libarrow.so.1400.2.0-gdb.py
/usr/share/licenses/apache-arrow-devel
/usr/share/licenses/apache-arrow-devel/LICENSE.txt
/usr/share/licenses/apache-arrow-devel/NOTICE.txt
/usr/share/licenses/apache-arrow-devel/header


Generated by rpm2html 1.8.1

Fabrice Bellet, Wed May 1 23:59:54 2024