Skip to content

Commit

Permalink
[pinot] add more log when result parsing fails
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrilou242 committed Jan 8, 2025
1 parent 4556629 commit 911ec64
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ private static ThirdEyeDataFrameResultSet fromPinotResultSet(final ResultSet res
try {
valueString = resultSet.getString(rowIdx, metricColumnIdx);
} catch (final Exception e) {
LOG.error("Failed to get value as String from result set. Replacing with a null value. This may generate errors downstream. Please reach out to support.", e);
// Do nothing and subsequently insert a null value to the current series.
}
columnsOfTheRow[metricColumnIdx + groupByColumnCount] = valueString;
Expand Down

0 comments on commit 911ec64

Please sign in to comment.