You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This patch adds the support of prepared statements.
Added a new type for handling prepared statements.
Added new IPROTO-constants for support of prepared statements
in const.go.
Added benchmarks for SQL-select prepared statement.
Added examples of using Prepare in example_test.go.
Fixed some grammar inconsistencies for the method Execute.
Updated CHANGELOG.md.
Follows up #62Closes#117
Copy file name to clipboardExpand all lines: errors.go
+2
Original file line number
Diff line number
Diff line change
@@ -168,3 +168,5 @@ const (
168
168
ErrWrongSchemaVaersion=109// Wrong schema version, current: %d, in request: %u
169
169
ErrSlabAllocMax=110// Failed to allocate %u bytes for tuple in the slab allocator: tuple is too large. Check 'slab_alloc_maximal' configuration option.
170
170
)
171
+
172
+
varErrStrangerConn=fmt.Errorf("the passed connected request doesn't belong to the current connection or connection pool")
0 commit comments