mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-21 04:28:04 +08:00
sql kv upsert
This commit is contained in:
@@ -7,6 +7,7 @@ import (
|
|||||||
"github.com/chrislusf/seaweedfs/weed/filer"
|
"github.com/chrislusf/seaweedfs/weed/filer"
|
||||||
"github.com/chrislusf/seaweedfs/weed/glog"
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
||||||
"github.com/chrislusf/seaweedfs/weed/util"
|
"github.com/chrislusf/seaweedfs/weed/util"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (store *AbstractSqlStore) KvPut(ctx context.Context, key []byte, value []byte) (err error) {
|
func (store *AbstractSqlStore) KvPut(ctx context.Context, key []byte, value []byte) (err error) {
|
||||||
@@ -15,14 +16,9 @@ func (store *AbstractSqlStore) KvPut(ctx context.Context, key []byte, value []by
|
|||||||
|
|
||||||
res, err := store.getTxOrDB(ctx).ExecContext(ctx, store.SqlInsert, dirHash, name, dirStr, value)
|
res, err := store.getTxOrDB(ctx).ExecContext(ctx, store.SqlInsert, dirHash, name, dirStr, value)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
if !strings.Contains(strings.ToLower(err.Error()), "duplicate") {
|
||||||
return fmt.Errorf("kv insert: %s", err)
|
return fmt.Errorf("kv insert: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO maybe it will throw error before coming here?
|
|
||||||
|
|
||||||
affectedRows, err := res.RowsAffected()
|
|
||||||
if err == nil && affectedRows > 0 {
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// now the insert failed possibly due to duplication constraints
|
// now the insert failed possibly due to duplication constraints
|
||||||
|
Reference in New Issue
Block a user