File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
sql/core/src/main/scala/org/apache/spark/sql/execution/columnar Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -224,7 +224,6 @@ private[sql] object InMemoryTableScanExec {
224224 |
225225 | while ( $idx < $numRows) {
226226 | int $rowidx = $idx++;
227- | System.out.println("rowIdx="+ $rowidx);
228227 | ${codegen.consume(ctx, columns, null ).trim}
229228 | if (shouldStop()) return;
230229 | }
@@ -243,12 +242,10 @@ private[sql] object InMemoryTableScanExec {
243242
244243 s """
245244 private void processBatch() throws java.io.IOException {
246- System.out.println("*** processBatch() ***");
247245 ${codeCol.trim}
248246 }
249247
250248 private void processRow() throws java.io.IOException {
251- System.out.println("*** processRow() ***");
252249 ${codeRow.trim}
253250 }
254251
You can’t perform that action at this time.
0 commit comments