Skip to content

Commit 54df41c

Browse files
committed
remove debug print
1 parent 8e218e3 commit 54df41c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

sql/core/src/main/scala/org/apache/spark/sql/execution/columnar/InMemoryTableScanExec.scala

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)