Author: jeff.yuchang
Date: 2010-09-10 02:41:16 -0400 (Fri, 10 Sep 2010)
New Revision: 941
Modified:
branches/ODE/RiftSaw-ODE-trunk/scheduler-simple/src/main/java/org/apache/ode/scheduler/simple/jdbc/SchedulerDAOConnectionImpl.java
Log:
* added a space for the sql statement.
Modified:
branches/ODE/RiftSaw-ODE-trunk/scheduler-simple/src/main/java/org/apache/ode/scheduler/simple/jdbc/SchedulerDAOConnectionImpl.java
===================================================================
---
branches/ODE/RiftSaw-ODE-trunk/scheduler-simple/src/main/java/org/apache/ode/scheduler/simple/jdbc/SchedulerDAOConnectionImpl.java 2010-09-09
16:20:38 UTC (rev 940)
+++
branches/ODE/RiftSaw-ODE-trunk/scheduler-simple/src/main/java/org/apache/ode/scheduler/simple/jdbc/SchedulerDAOConnectionImpl.java 2010-09-10
06:41:16 UTC (rev 941)
@@ -64,19 +64,19 @@
private static final String UPDATE_JOB = "update ODE_JOB set ts = ?, retryCount
= ?, scheduled = ? where jobid = ?";
- private static final String UPGRADE_JOB_DEFAULT = "update ODE_JOB set nodeid = ?
where nodeid is null and scheduled = 0"
+ private static final String UPGRADE_JOB_DEFAULT = "update ODE_JOB set nodeid = ?
where nodeid is null and scheduled = 0 "
+ "and mod(ts,?) = ? and ts < ?";
- private static final String UPGRADE_JOB_DB2 = "update ODE_JOB set nodeid = ?
where nodeid is null and scheduled = 0"
+ private static final String UPGRADE_JOB_DB2 = "update ODE_JOB set nodeid = ?
where nodeid is null and scheduled = 0 "
+ "and mod(ts,CAST(? AS BIGINT)) = ? and ts < ?";
- private static final String UPGRADE_JOB_SQLSERVER = "update ODE_JOB set nodeid =
? where nodeid is null and scheduled = 0"
+ private static final String UPGRADE_JOB_SQLSERVER = "update ODE_JOB set nodeid =
? where nodeid is null and scheduled = 0 "
+ "and (ts % ?) = ? and ts < ?";
- private static final String UPGRADE_JOB_SYBASE = "update ODE_JOB set nodeid = ?
where nodeid is null and scheduled = 0"
+ private static final String UPGRADE_JOB_SYBASE = "update ODE_JOB set nodeid = ?
where nodeid is null and scheduled = 0 "
+ "and convert(int, ts) % ? = ? and ts < ?";
- private static final String UPGRADE_JOB_SYBASE12 = "update ODE_JOB set nodeid =
? where nodeid is null and scheduled = 0"
+ private static final String UPGRADE_JOB_SYBASE12 = "update ODE_JOB set nodeid =
? where nodeid is null and scheduled = 0 "
+ "and -1 <> ? and -1 <> ? and ts < ?";
private static final String SAVE_JOB = "insert into ODE_JOB "
Show replies by date