This is an automated email from the ASF dual-hosted git repository. haonan pushed a commit to branch fix_UT_1.3 in repository https://gitbox.apache.org/repos/asf/iotdb-client-go.git
commit daab16ec27c4263e8513db9f44a2a581327a994d Author: HTHou <[email protected]> AuthorDate: Fri Feb 21 15:36:24 2025 +0800 fix dev/1.3 UT --- Makefile | 4 ++-- client/tablet_test.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e48327f..e46ca18 100644 --- a/Makefile +++ b/Makefile @@ -62,9 +62,9 @@ generate: mkdir -p thrift; \ 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; \ unzip -o thrift/iotdb-tools-thrift.zip -d thrift; \ - curl -o common.thrift https://raw.githubusercontent.com/apache/iotdb/master/iotdb-protocol/thrift-commons/src/main/thrift/common.thrift; \ + curl -o common.thrift https://raw.githubusercontent.com/apache/iotdb/dev/1.3/iotdb-protocol/thrift-commons/src/main/thrift/common.thrift; \ $(THRIFT_EXEC) -out . -gen go:package_prefix=github.com/apache/iotdb-client-go/ common.thrift; \ - curl -o client.thrift https://raw.githubusercontent.com/apache/iotdb/master/iotdb-protocol/thrift-datanode/src/main/thrift/client.thrift; \ + curl -o client.thrift https://raw.githubusercontent.com/apache/iotdb/dev/1.3/iotdb-protocol/thrift-datanode/src/main/thrift/client.thrift; \ $(THRIFT_EXEC) -out . -gen go:package_prefix=github.com/apache/iotdb-client-go/ client.thrift; \ rm -f common.thrift; \ rm -f client.thrift; \ diff --git a/client/tablet_test.go b/client/tablet_test.go index e4ecb73..8069b9d 100644 --- a/client/tablet_test.go +++ b/client/tablet_test.go @@ -191,7 +191,7 @@ func TestTablet_SetValueAt(t *testing.T) { columnIndex: 0, rowIndex: 0, }, - wantErr: true, + wantErr: false, }, { name: "columnIndex-1", args: args{
