Skip to content

Commit

Permalink
MONDRIAN: Count rows read from SQL during Segment.load. Currently alw…
Browse files Browse the repository at this point in the history
…ays returns 0. Problem was noted in MONDRIAN-769.

[git-p4: depot-paths = "//open/mondrian-release/3.2/": change = 13738]
  • Loading branch information
julianhyde committed Jul 6, 2010
1 parent 0f27b0c commit 8ff467d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/mondrian/rolap/agg/SegmentLoader.java
Expand Up @@ -416,6 +416,7 @@ RowList processData(
final RowList processedRows = new RowList(processedTypes, 100);

while (rawRows.next()) {
++stmt.rowCount;
processedRows.createRow();
// get the columns
int columnIndex = 0;
Expand Down

0 comments on commit 8ff467d

Please sign in to comment.