We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Free()
1 parent 8a983de commit 43c572eCopy full SHA for 43c572e
chdb-purego/chdb.go
@@ -56,12 +56,12 @@ func (c *result) Error() error {
56
}
57
58
// Free implements ChdbResult.
59
-func (c *result) Free() error {
+func (c *result) Free() {
60
if c.localResv2 != nil {
61
freeResultV2(c.localResv2)
62
c.localResv2 = nil
63
64
- return nil
+
65
66
67
// Len implements ChdbResult.
chdb-purego/types.go
@@ -47,7 +47,7 @@ type ChdbResult interface {
47
// If the query had any error during execution, here you can retrieve the cause.
48
Error() error
49
// Free the query result and all the allocated memory
50
- Free() error
+ Free()
51
52
53
type ChdbConn interface {
0 commit comments