Skip to content

Commit

Permalink
release: v3.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
huskar-t committed Jul 1, 2024
1 parent cfdec2a commit 5be32b5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ v2 is not compatible with v3 version and corresponds to the TDengine version as

| **driver-go version** | **TDengine version** | **major features** |
|-----------------------|----------------------|-----------------------------------------------|
| v3.5.6 | 3.3.2.0+ / 3.1.2.0+ | WebSocket performance improvements |
| v3.5.5 | 3.2.3.0+ / 3.1.1.27+ | support skip http ssl check |
| v3.5.4 | 3.2.3.0+ / 3.1.1.27+ | compatible with TDengine 3.3.0.0 tmq raw data |
| v3.5.3 | 3.2.3.0+ / 3.1.1.27+ | refactor taosWS |
Expand Down
2 changes: 0 additions & 2 deletions wrapper/stmt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,6 @@ func StmtQuery(t *testing.T, conn unsafe.Pointer, sql string, params *param.Para
if errCode != int(taosError.SUCCESS) {
errStr := TaosErrorStr(res)
err := taosError.NewError(code, errStr)
TaosFreeResult(res)
return nil, err
}
if blockSize == 0 {
Expand All @@ -711,7 +710,6 @@ func StmtQuery(t *testing.T, conn unsafe.Pointer, sql string, params *param.Para
d := parser.ReadBlock(block, blockSize, rowsHeader.ColTypes, precision)
data = append(data, d...)
}
TaosFreeResult(res)
return data, nil
}

Expand Down

0 comments on commit 5be32b5

Please sign in to comment.