This commit is contained in:
Chris Lu
2021-01-06 04:21:57 -08:00
parent 2b76854641
commit e327385644
2 changed files with 3 additions and 2 deletions

View File

@@ -7,9 +7,10 @@ import (
"time"
)
const(
const (
COLUMN_NAME = "a"
)
func (store *HbaseStore) KvPut(ctx context.Context, key []byte, value []byte) (err error) {
return store.doPut(ctx, store.cfKv, key, value, 0)
}