-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathdelete.go
97 lines (84 loc) · 2.67 KB
/
delete.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*
* Copyright (c) 2024 The GoPlus Authors (goplus.org). All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ydb
import (
"context"
"database/sql"
"log"
"reflect"
)
// -----------------------------------------------------------------------------
// Delete deltes rows by cond.
// - delete <cond>, <arg1>, <arg2>, ...
func (p *Class) Delete(cond string, args ...any) (sql.Result, error) {
tbl := p.exprTblname(cond)
query := makeDeleteExpr(tbl, cond)
iArgSlice := checkArgSlice(args)
if iArgSlice >= 0 {
return p.deleteMulti(context.TODO(), query, iArgSlice, args)
}
return p.deleteOne(context.TODO(), query, args)
}
func makeDeleteExpr(tbl string, cond string) string {
query := make([]byte, 0, 64)
query = append(query, "DELETE FROM "...)
query = append(query, tbl...)
query = append(query, " WHERE "...)
query = append(query, cond...)
return string(query)
}
func (p *Class) deleteRet(result sql.Result, err error) (sql.Result, error) {
if err != nil {
p.handleErr("delete:", err)
}
return result, err
}
func (p *Class) deleteOne(ctx context.Context, query string, args []any) (sql.Result, error) {
if debugExec {
log.Println("==>", query, args)
}
result, err := p.db.ExecContext(ctx, query, args...)
return p.deleteRet(result, err)
}
func (p *Class) deleteMulti(ctx context.Context, query string, iArgSlice int, args []any) (sql.Result, error) {
argSlice := args[iArgSlice]
defer func() {
args[iArgSlice] = argSlice
}()
vArgSlice := reflect.ValueOf(argSlice)
nAffected := deleteResult(0)
for i, n := 0, vArgSlice.Len(); i < n; i++ {
arg := vArgSlice.Index(i).Interface()
args[iArgSlice] = arg
result, err := p.deleteOne(ctx, query, args)
if err != nil {
return nAffected, err
}
if v, e := result.RowsAffected(); e == nil {
nAffected += deleteResult(v)
}
}
return nAffected, nil
}
// -----------------------------------------------------------------------------
type deleteResult int64
func (n deleteResult) LastInsertId() (int64, error) {
panic("not impl")
}
func (n deleteResult) RowsAffected() (int64, error) {
return int64(n), nil
}
// -----------------------------------------------------------------------------