[branch-2.1](thirdparty) upgrade arrow to 15.0.2 #32827
This commit is contained in:
@ -206,6 +206,13 @@ under the License.
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<extensions>
|
||||
<extension>
|
||||
<groupId>kr.motd.maven</groupId>
|
||||
<artifactId>os-maven-plugin</artifactId>
|
||||
<version>1.7.0</version>
|
||||
</extension>
|
||||
</extensions>
|
||||
</build>
|
||||
<modules>
|
||||
<module>fe-common</module>
|
||||
@ -305,7 +312,7 @@ under the License.
|
||||
<iceberg.version>1.4.3</iceberg.version>
|
||||
<maxcompute.version>0.45.2-public</maxcompute.version>
|
||||
<avro.version>1.11.3</avro.version>
|
||||
<arrow.version>15.0.0</arrow.version>
|
||||
<arrow.version>15.0.2</arrow.version>
|
||||
<!-- hudi -->
|
||||
<hudi.version>0.14.1</hudi.version>
|
||||
<presto.hadoop.version>2.7.4-11</presto.hadoop.version>
|
||||
|
||||
@ -74,7 +74,7 @@ under the License.
|
||||
<groovy.version>4.0.19</groovy.version>
|
||||
<antlr.version>4.9.3</antlr.version>
|
||||
<hadoop.version>2.8.0</hadoop.version>
|
||||
<arrow.version>15.0.0</arrow.version>
|
||||
<arrow.version>15.0.2</arrow.version>
|
||||
</properties>
|
||||
<build>
|
||||
<plugins>
|
||||
|
||||
@ -15,7 +15,7 @@
|
||||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
|
||||
suite("test_in_expr", "query,arrow_flight_sql") {
|
||||
suite("test_in_expr", "query") { // "arrow_flight_sql", groovy not support print arrow array type, throw IndexOutOfBoundsException.
|
||||
def nullTableName = "in_expr_test_null"
|
||||
def notNullTableName = "in_expr_test_not_null"
|
||||
|
||||
|
||||
@ -14,7 +14,9 @@
|
||||
// KIND, either express or implied. See the License for the
|
||||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
suite("test_window_fn", "arrow_flight_sql") {
|
||||
suite("test_window_fn") {
|
||||
// "arrow_flight_sql", groovy use flight sql connection to execute query `SUM(MAX(c1) OVER (PARTITION BY))` report error:
|
||||
// `AGGREGATE clause must not contain analytic expressions`, but no problem in Java execute it with `jdbc::arrow-flight-sql`.
|
||||
def tbName1 = "empsalary"
|
||||
def tbName2 = "tenk1"
|
||||
sql """ DROP TABLE IF EXISTS ${tbName1} """
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
// KIND, either express or implied. See the License for the
|
||||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
suite("test_two_phase_read_with_having", "arrow_flight_sql") {
|
||||
suite("test_two_phase_read_with_having") { // "arrow_flight_sql" not support two phase read
|
||||
|
||||
sql """ set enable_partition_topn = 1; """
|
||||
sql """ set topn_opt_limit_threshold = 1024; """
|
||||
|
||||
4
thirdparty/CHANGELOG.md
vendored
4
thirdparty/CHANGELOG.md
vendored
@ -2,6 +2,10 @@
|
||||
|
||||
This file contains version of the third-party dependency libraries in the build-env image. The docker build-env image is apache/doris, and the tag is `build-env-${version}`
|
||||
|
||||
## 20240325
|
||||
|
||||
- Modified: arrow 13.0.0 -> 15.0.2
|
||||
|
||||
## 20240112
|
||||
|
||||
- Modified: hadoop libhdfs 3.3.4.6
|
||||
|
||||
10
thirdparty/vars.sh
vendored
10
thirdparty/vars.sh
vendored
@ -253,10 +253,10 @@ GRPC_SOURCE=grpc-1.54.3
|
||||
GRPC_MD5SUM="af00a2edeae0f02bb25917cc3473b7de"
|
||||
|
||||
# arrow
|
||||
ARROW_DOWNLOAD="https://github.com/apache/arrow/archive/refs/tags/apache-arrow-13.0.0.tar.gz"
|
||||
ARROW_NAME="apache-arrow-13.0.0.tar.gz"
|
||||
ARROW_SOURCE="arrow-apache-arrow-13.0.0"
|
||||
ARROW_MD5SUM="8ec1ec6a119514bcaea1cf7aabc9df1f"
|
||||
ARROW_DOWNLOAD="https://github.com/apache/arrow/archive/refs/tags/apache-arrow-15.0.2.tar.gz"
|
||||
ARROW_NAME="apache-arrow-15.0.2.tar.gz"
|
||||
ARROW_SOURCE="arrow-apache-arrow-15.0.2"
|
||||
ARROW_MD5SUM="d5d051b2698be901e5ad84e36d64e7ab"
|
||||
|
||||
# Abseil
|
||||
ABSEIL_DOWNLOAD="https://github.com/abseil/abseil-cpp/archive/refs/tags/20230125.3.tar.gz"
|
||||
@ -313,7 +313,7 @@ JEMALLOC_DORIS_SOURCE="jemalloc-5.3.0"
|
||||
JEMALLOC_DORIS_MD5SUM="09a8328574dab22a7df848eae6dbbf53"
|
||||
|
||||
# libunwind
|
||||
LIBUNWIND_DOWNLOAD="http://download.savannah.nongnu.org/releases/libunwind/libunwind-1.6.2.tar.gz"
|
||||
LIBUNWIND_DOWNLOAD="https://github.com/libunwind/libunwind/releases/download/v1.6.2/libunwind-1.6.2.tar.gz"
|
||||
LIBUNWIND_NAME="libunwind-1.6.2.tar.gz"
|
||||
LIBUNWIND_SOURCE="libunwind-1.6.2"
|
||||
LIBUNWIND_MD5SUM="f625b6a98ac1976116c71708a73dc44a"
|
||||
|
||||
Reference in New Issue
Block a user