We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e584a31 commit df2d331Copy full SHA for df2d331
src/main/java/com/imsweb/staging/StagingDataProvider.java
@@ -161,6 +161,9 @@ public static StagingSchema initSchema(StagingSchema schema) {
161
public static StagingTable initTable(StagingTable table) {
162
Set<String> extraInputs = new HashSet<String>();
163
164
+ // empty out the parsed rows
165
+ table.setTableRows(new ArrayList<StagingTableRow>());
166
+
167
if (table.getRawRows() != null) {
168
for (List<String> row : table.getRawRows()) {
169
StagingTableRow tableRowEntity = new StagingTableRow();
0 commit comments