Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion fe/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,9 @@ under the License.
you can find avro version info in iceberg mvn repository -->
<iceberg.version>1.6.1</iceberg.version>
<maxcompute.version>0.49.0-public</maxcompute.version>
<arrow.version>18.2.0</arrow.version>
<!-- Arrow 19.0.1 will MacOS compile error and decimal type error when convert to Parquet
https://github.com/apache/doris/pull/51217-->
<arrow.version>17.0.0</arrow.version>
<presto.hadoop.version>2.7.4-11</presto.hadoop.version>
<presto.hive.version>3.0.0-8</presto.hive.version>
<!-- lakesoul -->
Expand Down
10 changes: 6 additions & 4 deletions thirdparty/vars.sh
Original file line number Diff line number Diff line change
Expand Up @@ -253,10 +253,12 @@ GRPC_SOURCE=grpc-1.54.3
GRPC_MD5SUM="af00a2edeae0f02bb25917cc3473b7de"

# arrow
ARROW_DOWNLOAD="https://github.com/apache/arrow/archive/refs/tags/apache-arrow-19.0.1.tar.gz"
ARROW_NAME="apache-arrow-19.0.1.tar.gz"
ARROW_SOURCE="arrow-apache-arrow-19.0.1"
ARROW_MD5SUM="8c5091da0f8fb41a47d7f4dad7b712df"
# Arrow 19.0.1 will MacOS compile error and decimal type error when convert to Parquet.
# https://github.com/apache/doris/pull/51217
ARROW_DOWNLOAD="https://github.com/apache/arrow/archive/refs/tags/apache-arrow-17.0.0.tar.gz"
ARROW_NAME="apache-arrow-17.0.0.tar.gz"
ARROW_SOURCE="arrow-apache-arrow-17.0.0"
ARROW_MD5SUM="ba18bf83e2164abd34b9ac4cb164f0f0"

# Abseil
ABSEIL_DOWNLOAD="https://github.com/abseil/abseil-cpp/archive/refs/tags/20230125.3.tar.gz"
Expand Down
Loading