Hi guys,
  Is it possible to delete a column or a column family by using
mutator_set_cells_as_arrays? Is it possible to do something like this:

<code>
client = ThriftClient('localhost', 38080)
namespace = client.namespace_open("<namespace>")

mutations = []
mutations.append(['00001', 'column', 'family', KeyFlag.DELETE_CF])

mutator = client.mutator_open(namespace, "<table>", 0, 0)
client.mutator_set_cells_as_arrays(mutator, mutations)
client.mutator_flush(mutator)
</code>

May be I am wrong but I seem to recall that with the old syntax it was
possible to do something like this if you put instead of the family
name the key flag.

Regards,
 Gal

-- 
You received this message because you are subscribed to the Google Groups 
"Hypertable Development" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/hypertable-dev?hl=en.

Reply via email to