Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 44 additions & 5 deletions client/column_decoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,18 @@ func (decoder *Int32ArrayColumnDecoder) ReadColumn(reader *bytes.Reader, dataTyp
// +---------------+-----------------+-------------+
// | byte | list[byte] | list[int32] |
// +---------------+-----------------+-------------+

if positionCount == 0 {
switch dataType {
case INT32, DATE:
return NewIntColumn(0, 0, nil, []int32{})
case FLOAT:
return NewFloatColumn(0, 0, nil, []float32{})
default:
return nil, fmt.Errorf("invalid data type: %v", dataType)
}
}

nullIndicators, err := deserializeNullIndicators(reader, positionCount)
if err != nil {
return nil, err
Expand Down Expand Up @@ -139,6 +151,18 @@ func (decoder *Int64ArrayColumnDecoder) ReadColumn(reader *bytes.Reader, dataTyp
// +---------------+-----------------+-------------+
// | byte | list[byte] | list[int64] |
// +---------------+-----------------+-------------+

if positionCount == 0 {
switch dataType {
case INT64, TIMESTAMP:
return NewLongColumn(0, 0, nil, []int64{})
case DOUBLE:
return NewDoubleColumn(0, 0, nil, []float64{})
default:
return nil, fmt.Errorf("invalid data type: %v", dataType)
}
}

nullIndicators, err := deserializeNullIndicators(reader, positionCount)
if err != nil {
return nil, err
Expand Down Expand Up @@ -185,6 +209,11 @@ func (decoder *ByteArrayColumnDecoder) ReadColumn(reader *bytes.Reader, dataType
if dataType != BOOLEAN {
return nil, fmt.Errorf("invalid data type: %v", dataType)
}

if positionCount == 0 {
return NewBooleanColumn(0, 0, nil, []bool{})
}

nullIndicators, err := deserializeNullIndicators(reader, positionCount)
if err != nil {
return nil, err
Expand Down Expand Up @@ -218,6 +247,11 @@ func (decoder *BinaryArrayColumnDecoder) ReadColumn(reader *bytes.Reader, dataTy
if TEXT != dataType {
return nil, fmt.Errorf("invalid data type: %v", dataType)
}

if positionCount == 0 {
return NewBinaryColumn(0, 0, nil, []*Binary{})
}

nullIndicators, err := deserializeNullIndicators(reader, positionCount)
if err != nil {
return nil, err
Expand All @@ -232,12 +266,17 @@ func (decoder *BinaryArrayColumnDecoder) ReadColumn(reader *bytes.Reader, dataTy
if err != nil {
return nil, err
}
value := make([]byte, length)
_, err = reader.Read(value)
if err != nil {
return nil, err

if length == 0 {
values[i] = NewBinary([]byte{})
} else {
value := make([]byte, length)
_, err = reader.Read(value)
if err != nil {
return nil, err
}
values[i] = NewBinary(value)
}
values[i] = NewBinary(value)
}
return NewBinaryColumn(0, positionCount, nullIndicators, values)
}
Expand Down
181 changes: 181 additions & 0 deletions client/column_decoder_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,181 @@
package client

import (
"bytes"
"encoding/binary"
"testing"
)

func buildNullIndicatorBytes(nulls []bool) []byte {
var buf bytes.Buffer
hasNull := false
for _, n := range nulls {
if n {
hasNull = true
break
}
}
if !hasNull {
buf.WriteByte(0)
return buf.Bytes()
}
buf.WriteByte(1)
packed := make([]byte, (len(nulls)+7)/8)
for i, n := range nulls {
if n {
packed[i/8] |= 0b10000000 >> (uint(i) % 8)
}
}
buf.Write(packed)
return buf.Bytes()
}

func TestBinaryArrayColumnDecoder_EmptyString(t *testing.T) {
var buf bytes.Buffer
buf.Write(buildNullIndicatorBytes([]bool{false}))
_ = binary.Write(&buf, binary.BigEndian, int32(0))

col, err := (&BinaryArrayColumnDecoder{}).ReadColumn(bytes.NewReader(buf.Bytes()), TEXT, 1)
if err != nil {
t.Fatalf("ReadColumn failed: %v", err)
}
if col.GetPositionCount() != 1 {
t.Fatalf("expected positionCount=1, got %d", col.GetPositionCount())
}
if col.IsNull(0) {
t.Fatal("row 0 should not be null")
}
val, err := col.GetBinary(0)
if err != nil {
t.Fatalf("GetBinary(0) failed: %v", err)
}
if len(val.values) != 0 {
t.Fatalf("expected empty string, got %q", string(val.values))
}
}

func TestBinaryArrayColumnDecoder_NullThenEmptyString(t *testing.T) {
var buf bytes.Buffer
buf.Write(buildNullIndicatorBytes([]bool{true, false}))
_ = binary.Write(&buf, binary.BigEndian, int32(0))

col, err := (&BinaryArrayColumnDecoder{}).ReadColumn(bytes.NewReader(buf.Bytes()), TEXT, 2)
if err != nil {
t.Fatalf("ReadColumn failed: %v", err)
}
if !col.IsNull(0) {
t.Error("row 0 should be null")
}
if col.IsNull(1) {
t.Error("row 1 should not be null")
}
val, err := col.GetBinary(1)
if err != nil {
t.Fatalf("GetBinary(1) failed: %v", err)
}
if len(val.values) != 0 {
t.Fatalf("expected empty string, got %q", string(val.values))
}
}

func TestBinaryArrayColumnDecoder_WithNull(t *testing.T) {
var buf bytes.Buffer
buf.Write(buildNullIndicatorBytes([]bool{false, true, false}))
writeText := func(s string) {
_ = binary.Write(&buf, binary.BigEndian, int32(len(s)))
buf.WriteString(s)
}
writeText("hello")
writeText("world")

col, err := (&BinaryArrayColumnDecoder{}).ReadColumn(bytes.NewReader(buf.Bytes()), TEXT, 3)
if err != nil {
t.Fatalf("ReadColumn failed: %v", err)
}
if col.IsNull(0) {
t.Error("row 0 should not be null")
}
if v, _ := col.GetBinary(0); string(v.values) != "hello" {
t.Errorf("row 0: expected \"hello\", got %q", string(v.values))
}
if !col.IsNull(1) {
t.Error("row 1 should be null")
}
if col.IsNull(2) {
t.Error("row 2 should not be null")
}
if v, _ := col.GetBinary(2); string(v.values) != "world" {
t.Errorf("row 2: expected \"world\", got %q", string(v.values))
}
}

func TestInt64ArrayColumnDecoder_WithNull(t *testing.T) {
var buf bytes.Buffer
buf.Write(buildNullIndicatorBytes([]bool{false, true, false}))
_ = binary.Write(&buf, binary.BigEndian, int64(100))
_ = binary.Write(&buf, binary.BigEndian, int64(200))

col, err := (&Int64ArrayColumnDecoder{}).ReadColumn(bytes.NewReader(buf.Bytes()), INT64, 3)
if err != nil {
t.Fatalf("ReadColumn failed: %v", err)
}
if col.IsNull(0) {
t.Error("row 0 should not be null")
}
if v, _ := col.GetLong(0); v != 100 {
t.Errorf("row 0: expected 100, got %d", v)
}
if !col.IsNull(1) {
t.Error("row 1 should be null")
}
if col.IsNull(2) {
t.Error("row 2 should not be null")
}
if v, _ := col.GetLong(2); v != 200 {
t.Errorf("row 2: expected 200, got %d", v)
}
}

func TestColumnDecoder_ZeroPositionCount(t *testing.T) {
empty := func() *bytes.Reader { return bytes.NewReader([]byte{}) }

t.Run("Int32ArrayColumnDecoder", func(t *testing.T) {
col, err := (&Int32ArrayColumnDecoder{}).ReadColumn(empty(), INT32, 0)
if err != nil {
t.Fatalf("ReadColumn failed: %v", err)
}
if col.GetPositionCount() != 0 {
t.Errorf("expected positionCount=0, got %d", col.GetPositionCount())
}
})

t.Run("Int64ArrayColumnDecoder", func(t *testing.T) {
col, err := (&Int64ArrayColumnDecoder{}).ReadColumn(empty(), INT64, 0)
if err != nil {
t.Fatalf("ReadColumn failed: %v", err)
}
if col.GetPositionCount() != 0 {
t.Errorf("expected positionCount=0, got %d", col.GetPositionCount())
}
})

t.Run("ByteArrayColumnDecoder", func(t *testing.T) {
col, err := (&ByteArrayColumnDecoder{}).ReadColumn(empty(), BOOLEAN, 0)
if err != nil {
t.Fatalf("ReadColumn failed: %v", err)
}
if col.GetPositionCount() != 0 {
t.Errorf("expected positionCount=0, got %d", col.GetPositionCount())
}
})

t.Run("BinaryArrayColumnDecoder", func(t *testing.T) {
col, err := (&BinaryArrayColumnDecoder{}).ReadColumn(empty(), TEXT, 0)
if err != nil {
t.Fatalf("ReadColumn failed: %v", err)
}
if col.GetPositionCount() != 0 {
t.Errorf("expected positionCount=0, got %d", col.GetPositionCount())
}
})
}
40 changes: 24 additions & 16 deletions client/session.go
Original file line number Diff line number Diff line change
Expand Up @@ -569,10 +569,12 @@ func (s *Session) ExecuteQueryStatement(sql string, timeoutMs *int64) (*SessionD
request.SessionId = s.sessionId
request.StatementId = s.requestStatementId
resp, err = s.client.ExecuteQueryStatementV2(context.Background(), &request)
if statusErr := VerifySuccess(resp.Status); statusErr == nil {
return NewSessionDataSet(sql, resp.Columns, resp.DataTypeList, resp.ColumnNameIndexMap, *resp.QueryId, s.requestStatementId, s.client, s.sessionId, resp.QueryResult_, resp.IgnoreTimeStamp != nil && *resp.IgnoreTimeStamp, timeoutMs, *resp.MoreData, s.config.FetchSize, s.config.TimeZone, s.timeFactor, resp.GetColumnIndex2TsBlockColumnIndexList())
} else {
return nil, statusErr
if err == nil && resp != nil {
if statusErr := VerifySuccess(resp.Status); statusErr == nil {
return NewSessionDataSet(sql, resp.Columns, resp.DataTypeList, resp.ColumnNameIndexMap, *resp.QueryId, s.requestStatementId, s.client, s.sessionId, resp.QueryResult_, resp.IgnoreTimeStamp != nil && *resp.IgnoreTimeStamp, timeoutMs, *resp.MoreData, s.config.FetchSize, s.config.TimeZone, s.timeFactor, resp.GetColumnIndex2TsBlockColumnIndexList())
} else {
return nil, statusErr
}
}
Comment on lines +572 to 578
Copy link

Copilot AI Mar 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The new if err == nil && resp != nil { ... } guard avoids a panic, but if err == nil and resp == nil this function will fall through and return (nil, nil) (since the final return nil, err returns a nil error). Please handle the resp == nil case explicitly (both for the initial RPC call and the reconnect retry) and return a non-nil error when the RPC returns a nil response.

Copilot uses AI. Check for mistakes.
}
return nil, err
Expand All @@ -597,10 +599,12 @@ func (s *Session) ExecuteAggregationQuery(paths []string, aggregations []common.
if s.reconnect() {
request.SessionId = s.sessionId
resp, err = s.client.ExecuteAggregationQueryV2(context.Background(), &request)
if statusErr := VerifySuccess(resp.Status); statusErr == nil {
return NewSessionDataSet("", resp.Columns, resp.DataTypeList, resp.ColumnNameIndexMap, *resp.QueryId, s.requestStatementId, s.client, s.sessionId, resp.QueryResult_, resp.IgnoreTimeStamp != nil && *resp.IgnoreTimeStamp, timeoutMs, *resp.MoreData, s.config.FetchSize, s.config.TimeZone, s.timeFactor, resp.GetColumnIndex2TsBlockColumnIndexList())
} else {
return nil, statusErr
if err == nil && resp != nil {
if statusErr := VerifySuccess(resp.Status); statusErr == nil {
return NewSessionDataSet("", resp.Columns, resp.DataTypeList, resp.ColumnNameIndexMap, *resp.QueryId, s.requestStatementId, s.client, s.sessionId, resp.QueryResult_, resp.IgnoreTimeStamp != nil && *resp.IgnoreTimeStamp, timeoutMs, *resp.MoreData, s.config.FetchSize, s.config.TimeZone, s.timeFactor, resp.GetColumnIndex2TsBlockColumnIndexList())
} else {
return nil, statusErr
}
}
Comment on lines +602 to 608
Copy link

Copilot AI Mar 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same issue here: if the retry call returns err == nil but resp == nil, the function will fall through and return (nil, nil). Please add explicit handling for nil responses (and ideally apply the same nil-response check on the initial RPC call too) so callers never get a nil dataset with a nil error.

Copilot uses AI. Check for mistakes.
}
return nil, err
Expand All @@ -626,10 +630,12 @@ func (s *Session) ExecuteAggregationQueryWithLegalNodes(paths []string, aggregat
if s.reconnect() {
request.SessionId = s.sessionId
resp, err = s.client.ExecuteAggregationQueryV2(context.Background(), &request)
if statusErr := VerifySuccess(resp.Status); statusErr == nil {
return NewSessionDataSet("", resp.Columns, resp.DataTypeList, resp.ColumnNameIndexMap, *resp.QueryId, s.requestStatementId, s.client, s.sessionId, resp.QueryResult_, resp.IgnoreTimeStamp != nil && *resp.IgnoreTimeStamp, timeoutMs, *resp.MoreData, s.config.FetchSize, s.config.TimeZone, s.timeFactor, resp.GetColumnIndex2TsBlockColumnIndexList())
} else {
return nil, statusErr
if err == nil && resp != nil {
if statusErr := VerifySuccess(resp.Status); statusErr == nil {
return NewSessionDataSet("", resp.Columns, resp.DataTypeList, resp.ColumnNameIndexMap, *resp.QueryId, s.requestStatementId, s.client, s.sessionId, resp.QueryResult_, resp.IgnoreTimeStamp != nil && *resp.IgnoreTimeStamp, timeoutMs, *resp.MoreData, s.config.FetchSize, s.config.TimeZone, s.timeFactor, resp.GetColumnIndex2TsBlockColumnIndexList())
} else {
return nil, statusErr
}
}
Comment on lines +633 to 639
Copy link

Copilot AI Mar 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same nil-response handling problem as above: the retry path now checks resp != nil, but if err == nil and resp == nil it will return (nil, nil). Please return an explicit error when the RPC returns a nil response (and consider guarding the initial non-retry call similarly).

Copilot uses AI. Check for mistakes.
}
return nil, err
Expand All @@ -653,10 +659,12 @@ func (s *Session) ExecuteFastLastDataQueryForOnePrefixPath(prefixes []string, ti
if s.reconnect() {
request.SessionId = s.sessionId
resp, err = s.client.ExecuteFastLastDataQueryForOnePrefixPath(context.Background(), &request)
if statusErr := VerifySuccess(resp.Status); statusErr == nil {
return NewSessionDataSet("", resp.Columns, resp.DataTypeList, resp.ColumnNameIndexMap, *resp.QueryId, s.requestStatementId, s.client, s.sessionId, resp.QueryResult_, resp.IgnoreTimeStamp != nil && *resp.IgnoreTimeStamp, timeoutMs, *resp.MoreData, s.config.FetchSize, s.config.TimeZone, s.timeFactor, resp.GetColumnIndex2TsBlockColumnIndexList())
} else {
return nil, statusErr
if err == nil && resp != nil {
if statusErr := VerifySuccess(resp.Status); statusErr == nil {
return NewSessionDataSet("", resp.Columns, resp.DataTypeList, resp.ColumnNameIndexMap, *resp.QueryId, s.requestStatementId, s.client, s.sessionId, resp.QueryResult_, resp.IgnoreTimeStamp != nil && *resp.IgnoreTimeStamp, timeoutMs, *resp.MoreData, s.config.FetchSize, s.config.TimeZone, s.timeFactor, resp.GetColumnIndex2TsBlockColumnIndexList())
} else {
return nil, statusErr
}
}
Comment on lines +662 to 668
Copy link

Copilot AI Mar 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same issue in this retry path: err == nil && resp == nil will cause the method to return (nil, nil) due to the final return nil, err. Please explicitly treat a nil response as an error (and consider applying the same check on the initial RPC call as well).

Copilot uses AI. Check for mistakes.
}
return nil, err
Expand Down
4 changes: 4 additions & 0 deletions client/sessiondataset.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,3 +125,7 @@ func (s *SessionDataSet) GetColumnNames() []string {
func (s *SessionDataSet) GetColumnTypes() []string {
return s.ioTDBRpcDataSet.columnTypeList
}

func (s *SessionDataSet) GetCurrentRowTime() int64 {
return s.ioTDBRpcDataSet.GetCurrentRowTime()
Comment on lines +129 to +130
Copy link

Copilot AI Mar 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IoTDBRpcDataSet.GetCurrentRowTime() returns the raw s.time value, whose unit depends on the server time precision (ms/us/ns) negotiated via timeFactor. If this API is intended to return milliseconds as stated in the PR description, it should convert using the configured time precision (or otherwise document clearly that it returns the raw precision-dependent value).

Copilot uses AI. Check for mistakes.
}
Loading