Skip to content

Commit

Permalink
Treat PROGRAM as PROCOBJ
Browse files Browse the repository at this point in the history
Scheduler PROGRAM has to be of type PROCOBJ to allow the DDL export of
such objects
  • Loading branch information
arno82 committed Dec 17, 2015
1 parent 1a4c2c2 commit f255505
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/com/googlecode/scheme2ddl/TypeNamesUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ public static String map2TypeForDBMS(String type) {
if (type.equals("JOB"))
return "PROCOBJ";
if (type.equals("SCHEDULE"))
return "PROCOBJ";
if (type.equals("PROGRAM"))
return "PROCOBJ";
if (type.equals("PACKAGE"))
return "PACKAGE_SPEC";
Expand Down

0 comments on commit f255505

Please sign in to comment.