}
// Make a decimal batch with three columns, including two for inputs and one for the result.
private VectorizedRowBatch getVectorizedRowBatch3DecimalCols() {
VectorizedRowBatch b = new VectorizedRowBatch(3);
DecimalColumnVector v0, v1;
b.cols[0] = v0 = new DecimalColumnVector(18, 2);
b.cols[1] = v1 = new DecimalColumnVector(18, 2);
b.cols[2] = 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);
v1.vector[0].update("1.00", (short) 2);