File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1+ * Removed ` Deprecated ` mark from ` table/session.Prepare ` method
2+ * Added comments for ` table/session.Execute ` method
3+
14## v3.26.2
25* Refactored of making permissions from scheme entry
36
Original file line number Diff line number Diff line change @@ -100,13 +100,15 @@ type Session interface {
100100 ) (exp DataQueryExplanation , err error )
101101
102102 // Prepare prepares query for executing in the future
103- //
104- // Deprecated: use Execute with KeepInCache policy option
105103 Prepare (
106104 ctx context.Context ,
107105 query string ,
108106 ) (stmt Statement , err error )
109107
108+ // Execute executes query.
109+ //
110+ // By default, Execute have a flag options.WithKeepInCache(true). For redefine behavior -
111+ // append option options.WithKeepInCache(false)
110112 Execute (
111113 ctx context.Context ,
112114 tx * TransactionControl ,
You can’t perform that action at this time.
0 commit comments