Repair broken compilation
This commit is contained in:
parent
a8675a8755
commit
39184d8527
|
@ -1502,7 +1502,7 @@ public class DBDifference {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
String value = data2.getValueForColumn(columns2.get(m).getColumnName());
|
String value = data2.getValueForColumn(columns2.get(m).getColumnName());
|
||||||
if (value != null && value.indexOf(''') != -1) {
|
if (value != null && value.indexOf('\'') != -1) {
|
||||||
value = value.replaceAll("'", "''");
|
value = value.replaceAll("'", "''");
|
||||||
}
|
}
|
||||||
if (and) {
|
if (and) {
|
||||||
|
|
Loading…
Reference in New Issue