| 80 | } |
| 81 | |
| 82 | void addEmptyColumn() { |
| 83 | if (currentColumn_ == numScalarColumns_ || |
| 84 | currentColumn_ == numScalarColumns_ + 2) { |
| 85 | // If the current column is after the Scalar Functions columns or |
| 86 | // the column next to Aggregate Functions column. |
| 87 | addColumn("", 2); |
| 88 | } else { |
| 89 | addColumn("", columnSize_); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | void endRow() { |
| 94 | out_ << std::endl; |
no outgoing calls
no test coverage detected