Skip to content

Commit aebf041

Browse files
SNOW-1527724: Bump up awssdk and arrow build version (#733)
1 parent 7290ec8 commit aebf041

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

deps/aws-sdk-cpp-1.11.283/src/aws-cpp-sdk-core/source/client/RequestCompression.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ iostream_outcome Aws::Client::RequestCompression::compress(std::shared_ptr<Aws::
8686
{
8787
// calculating stream size
8888
input->seekg(0, input->end);
89-
size_t streamSize = input->tellg();
89+
size_t streamSize = (size_t)input->tellg();
9090
input->seekg(0, input->beg);
9191

9292
AWS_LOGSTREAM_TRACE(AWS_REQUEST_COMPRESSION_LOG_TAG, "Compressing request of " << streamSize << " bytes.");
@@ -204,7 +204,7 @@ Aws::Client::RequestCompression::uncompress(std::shared_ptr<Aws::IOStream> input
204204
{
205205
// calculating stream size
206206
input->seekg(0, input->end);
207-
size_t streamSize = input->tellg();
207+
size_t streamSize = (size_t)input->tellg();
208208
input->seekg(0, input->beg);
209209

210210
AWS_LOGSTREAM_TRACE(AWS_REQUEST_COMPRESSION_LOG_TAG, "Uncompressing request of " << streamSize << " bytes.");

scripts/build_arrow.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
::
44
@echo off
55
set arrow_src_version=15.0.0
6-
set arrow_build_version=3
6+
set arrow_build_version=4
77
:: The full version number for dependency packaging/uploading/downloading
88
if "%ARROW_FROM_SOURCE%"=="1" (
99
set arrow_version=%arrow_src_version%.%arrow_build_version%

scripts/build_arrow.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function usage() {
1212
set -o pipefail
1313

1414
export ARROW_SRC_VERSION=15.0.0
15-
export ARROW_BUILD_VERSION=3
15+
export ARROW_BUILD_VERSION=4
1616
#The full version number for dependency packaging/uploading/downloading
1717
export ARROW_VERSION=${ARROW_SRC_VERSION}.${ARROW_BUILD_VERSION}
1818

scripts/build_awssdk.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
::
55
@echo off
66
set aws_src_version=1.11.283
7-
set aws_build_version=6
7+
set aws_build_version=7
88
set aws_version=%aws_src_version%.%aws_build_version%
99
call %*
1010
goto :EOF

scripts/build_awssdk.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function usage() {
1313
set -o pipefail
1414

1515
AWS_SRC_VERSION=1.11.283
16-
AWS_BUILD_VERSION=6
16+
AWS_BUILD_VERSION=7
1717
AWS_DIR=aws-sdk-cpp-$AWS_SRC_VERSION
1818
AWS_VERSION=$AWS_SRC_VERSION.$AWS_BUILD_VERSION
1919

0 commit comments

Comments
 (0)