Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: v3.5.6 #278

Merged
merged 1 commit into from
Jul 1, 2024
Merged
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
release: v3.5.6
huskar-t committed Jul 1, 2024
commit 5be32b503b4f1fb3f2b93842f7cf31da76d1380f
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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 |
2 changes: 0 additions & 2 deletions wrapper/stmt_test.go
Original file line number Diff line number Diff line change
@@ -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 {
@@ -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
}