This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch dev/1.3
in repository https://gitbox.apache.org/repos/asf/iotdb-client-go.git


The following commit(s) were added to refs/heads/dev/1.3 by this push:
     new 635a313  fix dev/1.3 UT (#116)
635a313 is described below

commit 635a313941d62c3d42cd7e5c5a928d40fb373f1c
Author: Haonan <[email protected]>
AuthorDate: Fri Feb 21 15:42:26 2025 +0800

    fix dev/1.3 UT (#116)
---
 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{

Reply via email to