View Issue Details

IDProjectCategoryView StatusLast Update
0002857SymmetricDSBugpublic2016-10-19 19:41
Reportergatokino Assigned Tojosh-a-hicks  
Priorityurgent 
Status resolvedResolutionfixed 
Product Version3.8.6 
Target Version3.8.7Fixed in Version3.8.7 
Summary0002857: PostgresBulkDatabaseWriter is not preserving spaces
DescriptionWhen doing initial load if a character[] field is present and that field has spaces at the end the spaces are lost at target.
Steps To Reproducesync a table with a character[2] containing 2 records having 'A ' and 'A'
the target table will have 'A', 'A'
Additional Informationproblem comes from

PostgresBulkDatabaseWriter -> line 104

 String formattedData = CsvUtils.escapeCsvData(parsedData, '\n', '\'', CsvWriter.ESCAPE_MODE_DOUBLED);

which calls

 writer.writeRecord(data);

instead of

 writer.writeRecord(data, true);
TagsNo tags attached.

Relationships

related to 0002871 closedjosh-a-hicks Initial loads and reload were not preserving spaces on an empty space field. 

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2016-10-12 09:21 gatokino New Issue
2016-10-19 19:40 josh-a-hicks Relationship added related to 0002871
2016-10-19 19:41 josh-a-hicks Status new => resolved
2016-10-19 19:41 josh-a-hicks Fixed in Version => 3.8.7
2016-10-19 19:41 josh-a-hicks Resolution open => fixed
2016-10-19 19:41 josh-a-hicks Assigned To => josh-a-hicks