Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyakhajanchi committed Dec 9, 2024
1 parent 8e1cb54 commit ca1a2f8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ public MigrationTransformationResponse toSourceRow(MigrationTransformationReques
Map<String, Object> requestRow = request.getRequestRow();
String name = requestRow.get("name").toString();
String[] nameArray = name.split(" ");
responseRow.put("first_name", nameArray[0]);
responseRow.put("last_name", nameArray[1]);
responseRow.put("first_name", "\'" + nameArray[0] + "\'");
responseRow.put("last_name", "\'" + nameArray[1] + "\'");
MigrationTransformationResponse response =
new MigrationTransformationResponse(responseRow, false);
return response;
Expand Down

0 comments on commit ca1a2f8

Please sign in to comment.