Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch '3.8' of https://github.com/JumpMind/symmetric-ds.git in…
…to 3.8
  • Loading branch information
mmichalek committed Nov 1, 2017
2 parents d1340ce + cb4132a commit 90341b4
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -437,9 +437,9 @@ public static String toXml(Database db) {
}

public static boolean isOracle(Column column) {
Collection<PlatformColumn> platformColumns = column.getPlatformColumns()
if(column.getPlatformColumns() != null) {
Collection<PlatformColumn> platformColumns = column.getPlatformColumns()
.values();
if(platformColumns != null) {
for(PlatformColumn col: platformColumns) {
if(col.getName().equals(DatabaseNamesConstants.ORACLE)) {
return true;
Expand Down

0 comments on commit 90341b4

Please sign in to comment.