Skip to content

Commit

Permalink
0005027: Fix NPE when a trigger hist is rebuilt with a reason code of H
Browse files Browse the repository at this point in the history
during routing
  • Loading branch information
joshhicks committed Jun 14, 2021
1 parent 6ae4759 commit 2feb6ca
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1191,7 +1191,7 @@ protected boolean doesColumnCountMatchValues(DataMetaData dataMetaData, Data dat
} else {
rowData = dataMetaData.getData().toParsedRowData();
}
return dataMetaData.getTable().getColumnCount() == rowData.length;
return rowData == null || dataMetaData.getTable().getColumnCount() == rowData.length;
}
return true;
}
Expand Down

0 comments on commit 2feb6ca

Please sign in to comment.