Skip to content

Commit

Permalink
SNOW-1527724: Bump up awssdk and arrow build version (#733)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-hx authored Jul 23, 2024
1 parent 7290ec8 commit aebf041
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ iostream_outcome Aws::Client::RequestCompression::compress(std::shared_ptr<Aws::
{
// calculating stream size
input->seekg(0, input->end);
size_t streamSize = input->tellg();
size_t streamSize = (size_t)input->tellg();
input->seekg(0, input->beg);

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

AWS_LOGSTREAM_TRACE(AWS_REQUEST_COMPRESSION_LOG_TAG, "Uncompressing request of " << streamSize << " bytes.");
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_arrow.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
::
@echo off
set arrow_src_version=15.0.0
set arrow_build_version=3
set arrow_build_version=4
:: The full version number for dependency packaging/uploading/downloading
if "%ARROW_FROM_SOURCE%"=="1" (
set arrow_version=%arrow_src_version%.%arrow_build_version%
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_arrow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function usage() {
set -o pipefail

export ARROW_SRC_VERSION=15.0.0
export ARROW_BUILD_VERSION=3
export ARROW_BUILD_VERSION=4
#The full version number for dependency packaging/uploading/downloading
export ARROW_VERSION=${ARROW_SRC_VERSION}.${ARROW_BUILD_VERSION}

Expand Down
2 changes: 1 addition & 1 deletion scripts/build_awssdk.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
::
@echo off
set aws_src_version=1.11.283
set aws_build_version=6
set aws_build_version=7
set aws_version=%aws_src_version%.%aws_build_version%
call %*
goto :EOF
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_awssdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function usage() {
set -o pipefail

AWS_SRC_VERSION=1.11.283
AWS_BUILD_VERSION=6
AWS_BUILD_VERSION=7
AWS_DIR=aws-sdk-cpp-$AWS_SRC_VERSION
AWS_VERSION=$AWS_SRC_VERSION.$AWS_BUILD_VERSION

Expand Down

0 comments on commit aebf041

Please sign in to comment.