Skip to content

Commit

Permalink
Fix Error Message When Using i on Large Table (#3521)
Browse files Browse the repository at this point in the history
  • Loading branch information
nbauernfeind authored Mar 10, 2023
1 parent 8e04e40 commit 00185f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ private CodeGenerator generateFillChunkHelper(TypeAnalyzer ta) {
private CodeGenerator generateIntSize() {
final CodeGenerator g = CodeGenerator.create(
"private int __intSize(final long l)", CodeGenerator.block(
"return LongSizedDataStructure.intSize(\"FormulaColumn ii usage\", l);"));
"return LongSizedDataStructure.intSize(\"FormulaColumn i usage\", l);"));
return g.freeze();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,6 @@ public void close() {
}

private int __intSize(final long l) {
return LongSizedDataStructure.intSize("FormulaColumn ii usage", l);
return LongSizedDataStructure.intSize("FormulaColumn i usage", l);
}
}

0 comments on commit 00185f2

Please sign in to comment.