Skip to content

Commit

Permalink
fix to dropObjectIfExists
Browse files Browse the repository at this point in the history
  • Loading branch information
gordthompson committed Mar 27, 2017
1 parent ddd3012 commit d673438
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ private static void dropObjectIfExists(String objectName, String objectProperty,
"DROP %s %s ",
bracketedObjectName,
objectProperty,
objectProperty == "IsProcedure" ? "PROCEDURE" : "TABLE",
"IsProcedure".equals(objectProperty) ? "PROCEDURE" : "TABLE",
bracketedObjectName);
stmt.executeUpdate(sql);
}
Expand Down

0 comments on commit d673438

Please sign in to comment.