Skip to content

Commit 535e07c

Browse files
committed
ci fix
1 parent 601df3d commit 535e07c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/multi-language-client.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,15 +120,15 @@ jobs:
120120
cd iotdb-client
121121
git clone https://github.com/apache/iotdb-client-go.git
122122
cd iotdb-client-go
123-
git checkout rc/1.3.3
123+
git checkout dev/1.3
124124
make e2e_test_for_parent_git_repo e2e_test_clean_for_parent_git_repo
125125
126126
python:
127127
strategy:
128128
fail-fast: false
129129
max-parallel: 15
130130
matrix:
131-
python: [ '3.6', '3.x' ]
131+
python: [ '3.x' ]
132132
runs-on: ${{ (matrix.python == '3.6' && 'ubuntu-20.04') || 'ubuntu-latest' }}
133133

134134
steps:

iotdb-client/client-cpp/src/main/IoTDBRpcDataSet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ bool IoTDBRpcDataSet::fetchResults() {
189189
client_->fetchResultsV2(resp, req);
190190
RpcUtils::verifySuccess(resp.status);
191191
moreData_ = resp.moreData;
192-
if (!resp.hasResultSet) {
192+
if (!resp.hasResultSet || !moreData_) {
193193
close();
194194
}
195195
else {

0 commit comments

Comments
 (0)