How to correctly copy the contents of original VdbeOp aOp which is created by SQlite for some query into another custom VdbeOp object.
I tried by normally copying the contents one by one but it resulted in errors. And how to correctly allocate memory to the custom VdbeOp object and how to free the original aOp. So can anyone suggest me the correct way of doing those ? Thanks in advance.