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 0e456ee commit 9cb3a39Copy full SHA for 9cb3a39
data-loader/core/src/test/java/com/scalar/db/dataloader/core/dataexport/producer/CsvProducerTaskTest.java
@@ -134,5 +134,12 @@ void process_withValidResultList_withPartialProjectionsAndMetadata_shouldReturnV
134
resultList.add(result);
135
String output = csvProducerTask.process(resultList);
136
Assertions.assertEquals(expectedOutput, output.trim());
137
+
138
+ values.put(textColName, TextColumn.ofNull(textColName));
139
+ result = new ResultImpl(values, mockMetadata);
140
+ resultList = new ArrayList<>();
141
+ resultList.add(result);
142
+ output = csvProducerTask.process(resultList);
143
+ Assertions.assertEquals(expectedOutput, output.trim());
144
}
145
0 commit comments