return b;
}
private VectorizedRowBatch getVectorizedRowBatch2DecimalCol() {
VectorizedRowBatch b = new VectorizedRowBatch(2);
DecimalColumnVector v0, v1;
b.cols[0] = v0 = new DecimalColumnVector(18, 2);
v0.vector[0].update("1.20", (short) 2);
v0.vector[1].update("-3.30", (short) 2);
v0.vector[2].update("0", (short) 2);
b.cols[1] = v1 = new DecimalColumnVector(18, 2);
v1.vector[0].update("-1", (short) 2);
v1.vector[1].update("-3.30", (short) 2);
v1.vector[2].update("10", (short) 2);
b.size = 3;