@@ -8,40 +8,106 @@ type Connector interface {
8
8
Ping () (resp * Response , err error )
9
9
ConfiguredTimeout () time.Duration
10
10
11
+ // Deprecated: the method will be removed in the next major version,
12
+ // use a SelectRequest object + Do() instead.
11
13
Select (space , index interface {}, offset , limit uint32 , iterator Iter , key interface {}) (resp * Response , err error )
14
+ // Deprecated: the method will be removed in the next major version,
15
+ // use an InsertRequest object + Do() instead.
12
16
Insert (space interface {}, tuple interface {}) (resp * Response , err error )
17
+ // Deprecated: the method will be removed in the next major version,
18
+ // use a ReplicaRequest object + Do() instead.
13
19
Replace (space interface {}, tuple interface {}) (resp * Response , err error )
20
+ // Deprecated: the method will be removed in the next major version,
21
+ // use a DeleteRequest object + Do() instead.
14
22
Delete (space , index interface {}, key interface {}) (resp * Response , err error )
23
+ // Deprecated: the method will be removed in the next major version,
24
+ // use a UpdateRequest object + Do() instead.
15
25
Update (space , index interface {}, key , ops interface {}) (resp * Response , err error )
26
+ // Deprecated: the method will be removed in the next major version,
27
+ // use a UpsertRequest object + Do() instead.
16
28
Upsert (space interface {}, tuple , ops interface {}) (resp * Response , err error )
29
+ // Deprecated: the method will be removed in the next major version,
30
+ // use a CallRequest object + Do() instead.
17
31
Call (functionName string , args interface {}) (resp * Response , err error )
32
+ // Deprecated: the method will be removed in the next major version,
33
+ // use a Call16Request object + Do() instead.
18
34
Call16 (functionName string , args interface {}) (resp * Response , err error )
35
+ // Deprecated: the method will be removed in the next major version,
36
+ // use a Call17Request object + Do() instead.
19
37
Call17 (functionName string , args interface {}) (resp * Response , err error )
38
+ // Deprecated: the method will be removed in the next major version,
39
+ // use an EvalRequest object + Do() instead.
20
40
Eval (expr string , args interface {}) (resp * Response , err error )
41
+ // Deprecated: the method will be removed in the next major version,
42
+ // use an ExecuteRequest object + Do() instead.
21
43
Execute (expr string , args interface {}) (resp * Response , err error )
22
44
45
+ // Deprecated: the method will be removed in the next major version,
46
+ // use a SelectRequest object + Do() instead.
23
47
GetTyped (space , index interface {}, key interface {}, result interface {}) (err error )
48
+ // Deprecated: the method will be removed in the next major version,
49
+ // use a SelectRequest object + Do() instead.
24
50
SelectTyped (space , index interface {}, offset , limit uint32 , iterator Iter , key interface {}, result interface {}) (err error )
51
+ // Deprecated: the method will be removed in the next major version,
52
+ // use an InsertRequest object + Do() instead.
25
53
InsertTyped (space interface {}, tuple interface {}, result interface {}) (err error )
54
+ // Deprecated: the method will be removed in the next major version,
55
+ // use a ReplaceRequest object + Do() instead.
26
56
ReplaceTyped (space interface {}, tuple interface {}, result interface {}) (err error )
57
+ // Deprecated: the method will be removed in the next major version,
58
+ // use a DeleteRequest object + Do() instead.
27
59
DeleteTyped (space , index interface {}, key interface {}, result interface {}) (err error )
60
+ // Deprecated: the method will be removed in the next major version,
61
+ // use a UpdateRequest object + Do() instead.
28
62
UpdateTyped (space , index interface {}, key , ops interface {}, result interface {}) (err error )
63
+ // Deprecated: the method will be removed in the next major version,
64
+ // use a CallRequest object + Do() instead.
29
65
CallTyped (functionName string , args interface {}, result interface {}) (err error )
66
+ // Deprecated: the method will be removed in the next major version,
67
+ // use a Call16Request object + Do() instead.
30
68
Call16Typed (functionName string , args interface {}, result interface {}) (err error )
69
+ // Deprecated: the method will be removed in the next major version,
70
+ // use a Call17Request object + Do() instead.
31
71
Call17Typed (functionName string , args interface {}, result interface {}) (err error )
72
+ // Deprecated: the method will be removed in the next major version,
73
+ // use an EvalRequest object + Do() instead.
32
74
EvalTyped (expr string , args interface {}, result interface {}) (err error )
75
+ // Deprecated: the method will be removed in the next major version,
76
+ // use an ExecuteRequest object + Do() instead.
33
77
ExecuteTyped (expr string , args interface {}, result interface {}) (SQLInfo , []ColumnMetaData , error )
34
78
79
+ // Deprecated: the method will be removed in the next major version,
80
+ // use a SelectRequest object + Do() instead.
35
81
SelectAsync (space , index interface {}, offset , limit uint32 , iterator Iter , key interface {}) * Future
82
+ // Deprecated: the method will be removed in the next major version,
83
+ // use an InsertRequest object + Do() instead.
36
84
InsertAsync (space interface {}, tuple interface {}) * Future
85
+ // Deprecated: the method will be removed in the next major version,
86
+ // use a ReplaceRequest object + Do() instead.
37
87
ReplaceAsync (space interface {}, tuple interface {}) * Future
88
+ // Deprecated: the method will be removed in the next major version,
89
+ // use a DeleteRequest object + Do() instead.
38
90
DeleteAsync (space , index interface {}, key interface {}) * Future
91
+ // Deprecated: the method will be removed in the next major version,
92
+ // use a UpdateRequest object + Do() instead.
39
93
UpdateAsync (space , index interface {}, key , ops interface {}) * Future
94
+ // Deprecated: the method will be removed in the next major version,
95
+ // use a UpsertRequest object + Do() instead.
40
96
UpsertAsync (space interface {}, tuple interface {}, ops interface {}) * Future
97
+ // Deprecated: the method will be removed in the next major version,
98
+ // use a CallRequest object + Do() instead.
41
99
CallAsync (functionName string , args interface {}) * Future
100
+ // Deprecated: the method will be removed in the next major version,
101
+ // use a Call16Request object + Do() instead.
42
102
Call16Async (functionName string , args interface {}) * Future
103
+ // Deprecated: the method will be removed in the next major version,
104
+ // use a Call17Request object + Do() instead.
43
105
Call17Async (functionName string , args interface {}) * Future
106
+ // Deprecated: the method will be removed in the next major version,
107
+ // use an EvalRequest object + Do() instead.
44
108
EvalAsync (expr string , args interface {}) * Future
109
+ // Deprecated: the method will be removed in the next major version,
110
+ // use an ExecuteRequest object + Do() instead.
45
111
ExecuteAsync (expr string , args interface {}) * Future
46
112
47
113
NewPrepared (expr string ) (* Prepared , error )
0 commit comments