File tree 5 files changed +6
-6
lines changed
deps/aws-sdk-cpp-1.11.283/src/aws-cpp-sdk-core/source/client
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ iostream_outcome Aws::Client::RequestCompression::compress(std::shared_ptr<Aws::
86
86
{
87
87
// calculating stream size
88
88
input->seekg (0 , input->end );
89
- size_t streamSize = input->tellg ();
89
+ size_t streamSize = ( size_t ) input->tellg ();
90
90
input->seekg (0 , input->beg );
91
91
92
92
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
204
204
{
205
205
// calculating stream size
206
206
input->seekg (0 , input->end );
207
- size_t streamSize = input->tellg ();
207
+ size_t streamSize = ( size_t ) input->tellg ();
208
208
input->seekg (0 , input->beg );
209
209
210
210
AWS_LOGSTREAM_TRACE (AWS_REQUEST_COMPRESSION_LOG_TAG, " Uncompressing request of " << streamSize << " bytes." );
Original file line number Diff line number Diff line change 3
3
::
4
4
@ echo off
5
5
set arrow_src_version = 15.0.0
6
- set arrow_build_version = 3
6
+ set arrow_build_version = 4
7
7
:: The full version number for dependency packaging/uploading/downloading
8
8
if " %ARROW_FROM_SOURCE% " == " 1" (
9
9
set arrow_version = %arrow_src_version% .%arrow_build_version%
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ function usage() {
12
12
set -o pipefail
13
13
14
14
export ARROW_SRC_VERSION=15.0.0
15
- export ARROW_BUILD_VERSION=3
15
+ export ARROW_BUILD_VERSION=4
16
16
# The full version number for dependency packaging/uploading/downloading
17
17
export ARROW_VERSION=${ARROW_SRC_VERSION} .${ARROW_BUILD_VERSION}
18
18
Original file line number Diff line number Diff line change 4
4
::
5
5
@ echo off
6
6
set aws_src_version = 1.11.283
7
- set aws_build_version = 6
7
+ set aws_build_version = 7
8
8
set aws_version = %aws_src_version% .%aws_build_version%
9
9
call %*
10
10
goto :EOF
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ function usage() {
13
13
set -o pipefail
14
14
15
15
AWS_SRC_VERSION=1.11.283
16
- AWS_BUILD_VERSION=6
16
+ AWS_BUILD_VERSION=7
17
17
AWS_DIR=aws-sdk-cpp-$AWS_SRC_VERSION
18
18
AWS_VERSION=$AWS_SRC_VERSION .$AWS_BUILD_VERSION
19
19
You can’t perform that action at this time.
0 commit comments