How can I insert multiple Columns for one row using one insert() in C++? I’m using the thrift generated cpp code.
I noticed the Java implementation seems to have a batch_insert(), which doesn’t exist in the cpp generated code. Does that mean I have to call insert() for each column or is there a better way?
The Thrift interface has a
batch_mutate()call that allows you to pass in a map of mutations–a mutation being any insert or delete.From the Thrift spec: