Skip to content

Commit 635a313

Browse files
authored
fix dev/1.3 UT (#116)
1 parent 75258e7 commit 635a313

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ generate:
6262
mkdir -p thrift; \
6363
curl -L -o thrift/iotdb-tools-thrift.zip https://repo1.maven.org/maven2/org/apache/iotdb/tools/iotdb-tools-thrift/0.14.1.0/iotdb-tools-thrift-0.14.1.0-$(OS_CLASSIFIER).zip; \
6464
unzip -o thrift/iotdb-tools-thrift.zip -d thrift; \
65-
curl -o common.thrift https://raw.githubusercontent.com/apache/iotdb/master/iotdb-protocol/thrift-commons/src/main/thrift/common.thrift; \
65+
curl -o common.thrift https://raw.githubusercontent.com/apache/iotdb/dev/1.3/iotdb-protocol/thrift-commons/src/main/thrift/common.thrift; \
6666
$(THRIFT_EXEC) -out . -gen go:package_prefix=github.com/apache/iotdb-client-go/ common.thrift; \
67-
curl -o client.thrift https://raw.githubusercontent.com/apache/iotdb/master/iotdb-protocol/thrift-datanode/src/main/thrift/client.thrift; \
67+
curl -o client.thrift https://raw.githubusercontent.com/apache/iotdb/dev/1.3/iotdb-protocol/thrift-datanode/src/main/thrift/client.thrift; \
6868
$(THRIFT_EXEC) -out . -gen go:package_prefix=github.com/apache/iotdb-client-go/ client.thrift; \
6969
rm -f common.thrift; \
7070
rm -f client.thrift; \

client/tablet_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ func TestTablet_SetValueAt(t *testing.T) {
191191
columnIndex: 0,
192192
rowIndex: 0,
193193
},
194-
wantErr: true,
194+
wantErr: false,
195195
}, {
196196
name: "columnIndex-1",
197197
args: args{

0 commit comments

Comments
 (0)