Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonald.g.dunne2013-02-19 21:08:12 +0000
committerdonald.g.dunne2013-02-19 21:29:43 +0000
commitdd1b19066f8669f8d549d22d783456f60704abf3 (patch)
treea5e1ebd4333d31a951f9d0b23c44348d29b6b581 /plugins/org.eclipse.osee.framework.database.init
parentef820cdc374b79aa69dad6928b3787d62b7b2c38 (diff)
downloadorg.eclipse.osee-dd1b19066f8669f8d549d22d783456f60704abf3.tar.gz
org.eclipse.osee-dd1b19066f8669f8d549d22d783456f60704abf3.tar.xz
org.eclipse.osee-dd1b19066f8669f8d549d22d783456f60704abf3.zip
bug[ats_65ZSS]: Server throwing exception for -1 local id
Diffstat (limited to 'plugins/org.eclipse.osee.framework.database.init')
-rw-r--r--plugins/org.eclipse.osee.framework.database.init/src/org/eclipse/osee/framework/database/init/internal/PostDbUserCleanUp.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.framework.database.init/src/org/eclipse/osee/framework/database/init/internal/PostDbUserCleanUp.java b/plugins/org.eclipse.osee.framework.database.init/src/org/eclipse/osee/framework/database/init/internal/PostDbUserCleanUp.java
index 8c02e2f11c1..813b194e1b2 100644
--- a/plugins/org.eclipse.osee.framework.database.init/src/org/eclipse/osee/framework/database/init/internal/PostDbUserCleanUp.java
+++ b/plugins/org.eclipse.osee.framework.database.init/src/org/eclipse/osee/framework/database/init/internal/PostDbUserCleanUp.java
@@ -28,7 +28,7 @@ import org.eclipse.osee.framework.skynet.core.artifact.BranchManager;
* @author Roberto E. Escobar
*/
public class PostDbUserCleanUp implements IDbInitializationTask {
- private static final String UPDATE_BOOTSTRAP_USER_ID = "UPDATE osee_tx_details SET author = ? where author = 0";
+ private static final String UPDATE_BOOTSTRAP_USER_ID = "UPDATE osee_tx_details SET author = ? where author <= 0";
@Override
public void run() throws OseeCoreException {

Back to the top