Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjphillips2008-09-24 17:02:28 +0000
committerjphillips2008-09-24 17:02:28 +0000
commit07b2eac2a687c45a12b50c7ea8bf6b88fd04d88e (patch)
tree47a9c2131b6466006015391f020f0611d2529e67
parent348706b19e36d8463b01f1e6fdde3742c27efd72 (diff)
downloadorg.eclipse.osee-07b2eac2a687c45a12b50c7ea8bf6b88fd04d88e.tar.gz
org.eclipse.osee-07b2eac2a687c45a12b50c7ea8bf6b88fd04d88e.tar.xz
org.eclipse.osee-07b2eac2a687c45a12b50c7ea8bf6b88fd04d88e.zip
-rw-r--r--org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/dbHealth/CleanUpAddressingData.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/dbHealth/CleanUpAddressingData.java b/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/dbHealth/CleanUpAddressingData.java
index 34f3b8c2e4a..3338d8a19e3 100644
--- a/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/dbHealth/CleanUpAddressingData.java
+++ b/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/dbHealth/CleanUpAddressingData.java
@@ -34,7 +34,7 @@ public class CleanUpAddressingData extends DatabaseHealthTask {
private static final String NOT_ADDRESSESED_GAMMAS =
"SELECT gamma_id from osee_define_txs MINUS (SELECT gamma_id FROM osee_Define_artifact_version UNION SELECT gamma_id FROM osee_Define_attribute UNION SELECT gamma_id FROM osee_Define_rel_link)";
private static final String NOT_ADDRESSESED_TRANSACTIONS =
- "SELECT transaction_id from osee_Define_txs MINUS SELECT transaction_id from osee_Define_tx_details)";
+ "SELECT transaction_id from osee_Define_txs MINUS SELECT transaction_id from osee_Define_tx_details";
private static final String REMOVE_NOT_ADDRESSED_GAMMAS = "DELETE FROM osee_define_txs WHERE gamma_id = ?";
private static final String REMOVE_NOT_ADDRESSED_TRANSACTIONS =
"DELETE FROM osee_define_txs WHERE transaction_id = ?";

Back to the top