Skip to content

Commit

Permalink
Merge pull request #2021 from liquibase/remove-escaped-backslash-in-d…
Browse files Browse the repository at this point in the history
…ata-output

Do not escape the backslash in values stored in the objects.
  • Loading branch information
nvoxland committed Nov 15, 2021
2 parents b26725a + 13a88bd commit 97c2acd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public Change[] fixMissing(DatabaseObject missingObject, DiffOutputControl outpu
}
column.setValueComputed(new DatabaseFunction("UNSUPPORTED FOR DIFF: BINARY DATA"));
} else { // fall back to simple string
column.setValue(value.toString().replace("\\", "\\\\"));
column.setValue(value.toString());
}

change.addColumn(column);
Expand Down

0 comments on commit 97c2acd

Please sign in to comment.