// MergeCF merges the data associated with the key with the actual data in the // database and column family. func (db *DB) MergeCF(opts *WriteOptions, cf *CF, key []byte, value []byte) error { var ( cErr *C.char cKey = byteToChar(key) cValue = byteToChar(value) ) C.rocksdb_merge_cf(db.c, opts.c, cf.c, cKey, C.size_t(len(key)), cValue, C.size_t(len(value)), &cErr) return convertErr(cErr) }
// MergeCF merges the data associated with the key with the actual data in the // database and column family. func (self *DB) MergeCF(opts *WriteOptions, cf *ColumnFamilyHandle, key []byte, value []byte) error { cKey := byteToChar(key) cValue := byteToChar(value) var cErr *C.char C.rocksdb_merge_cf(self.c, opts.c, cf.c, cKey, C.size_t(len(key)), cValue, C.size_t(len(value)), &cErr) if cErr != nil { defer C.free(unsafe.Pointer(cErr)) return errors.New(C.GoString(cErr)) } return nil }