Skip to content

Commit

Permalink
* number of bytes logged into exception
Browse files Browse the repository at this point in the history
  • Loading branch information
pokab authored and vargabalazs93 committed Oct 29, 2024
1 parent 10b5807 commit 753bdaf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2387,7 +2387,7 @@ protected void processResults(ResultHandler handler, int flags, boolean adaptive
if (!hadTooManyTuples) {
hadTooManyTuples = true;
tuples = new ArrayList<Tuple>();
handler.handleError(new PSQLException(GT.tr("Ran out of allowed memory retrieving query results."), PSQLState.OUT_OF_MEMORY));
handler.handleError(new PSQLException(GT.tr("Ran out of allowed memory retrieving query results. Bytes= {0}", tupleBytes), PSQLState.OUT_OF_MEMORY));
}
}
}
Expand Down

0 comments on commit 753bdaf

Please sign in to comment.