Skip to content

26.3 Fix for export tests#2898

Merged
DariaBod merged 5 commits intorelease26.3-SNAPSHOTfrom
26.3_fb_fixExportTests
Mar 3, 2026
Merged

26.3 Fix for export tests#2898
DariaBod merged 5 commits intorelease26.3-SNAPSHOTfrom
26.3_fb_fixExportTests

Conversation

@DariaBod
Copy link
Contributor

@DariaBod DariaBod commented Mar 2, 2026

Rationale

Fix for export tests, changed the " " symbol processing.

Related Pull Requests

Comment on lines -588 to +590
List<List<String>> list = records.stream().map(CSVRecord::toList).toList();
if (list.size() != 1)
throw new IllegalArgumentException("Invalid multi-value text string: " + multiValueString);
return list.getFirst();
if (records.isEmpty())
return List.of();
return records.getFirst().toList();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider throwing an IllegalArgumentException if there is more than one record.

@DariaBod DariaBod merged commit f4cd961 into release26.3-SNAPSHOT Mar 3, 2026
5 checks passed
@DariaBod DariaBod deleted the 26.3_fb_fixExportTests branch March 3, 2026 00:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants