10041005100610071008100910101011101210131014
public void setup(RecordBatch b) { xMean = new Float8Holder(); yMean = new Float8Holder(); xyMean = new Float8Holder(); count = new BigIntHolder(); covar = new Float8Holder(); // Initialize the workspace variables xMean.value = 0; yMean.value = 0;
10691070107110721073107410751076107710781079
11281129113011311132113311341135113611371138
11931194119511961197119811991200120112021203
12521253125412551256125712581259126012611262
61626364656667686970
@Param BigIntHolder in; @Workspace BigIntHolder inter; @Output BigIntHolder out; public void setup(RecordBatch b) { inter = new BigIntHolder(); // Initialize the workspace variables inter.value = Integer.MAX_VALUE; }
9596979899100101102103104
@Param NullableBigIntHolder in; @Workspace BigIntHolder inter; @Output BigIntHolder out; public void setup(RecordBatch b) { inter = new BigIntHolder(); // Initialize the workspace variables inter.value = Integer.MAX_VALUE; }
325326327328329330331332333334335
384385386387388389390391392393394
449450451452453454455456457458459