mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-01 11:29:48 +08:00
a5e2d6b6fb
Signed-off-by: longjiquan <jiquan.long@zilliz.com> Co-authored-by: xaxys <tpnnghd@163.com> Signed-off-by: longjiquan <jiquan.long@zilliz.com> Co-authored-by: xaxys <tpnnghd@163.com>
60 lines
1.2 KiB
Go
60 lines
1.2 KiB
Go
package kv
|
|
|
|
type TxnKVMock struct {
|
|
TxnKV
|
|
SaveF func(key, value string) error
|
|
RemoveF func(key string) error
|
|
}
|
|
|
|
func (m TxnKVMock) Load(key string) (string, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (m TxnKVMock) MultiLoad(keys []string) ([]string, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (m TxnKVMock) LoadWithPrefix(key string) ([]string, []string, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (m TxnKVMock) Save(key, value string) error {
|
|
return m.SaveF(key, value)
|
|
}
|
|
|
|
func (m TxnKVMock) MultiSave(kvs map[string]string) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (m TxnKVMock) Remove(key string) error {
|
|
return m.RemoveF(key)
|
|
}
|
|
|
|
func (m TxnKVMock) MultiRemove(keys []string) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (m TxnKVMock) RemoveWithPrefix(key string) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (m TxnKVMock) Close() {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (m TxnKVMock) MultiSaveAndRemove(saves map[string]string, removals []string) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (m TxnKVMock) MultiRemoveWithPrefix(keys []string) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (m TxnKVMock) MultiSaveAndRemoveWithPrefix(saves map[string]string, removals []string) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func NewMockTxnKV() *TxnKVMock {
|
|
return &TxnKVMock{}
|
|
}
|