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