Ejemplo n.º 1
0
// Frees memory of Column Family.
func (cf *ColumnFamily) Destroy() {
	C.rocksdb_column_family_handle_destroy(cf.c)
}
Ejemplo n.º 2
0
// Destroy calls the destructor of the underlying column family handle.
func (h *ColumnFamilyHandle) Destroy() {
	C.rocksdb_column_family_handle_destroy(h.c)
}
Ejemplo n.º 3
0
// Release calls the destructor of the underlying column family handle.
func (c *CF) Release() {
	C.rocksdb_column_family_handle_destroy(c.c)
}