Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjphillips2010-03-09 14:49:27 +0000
committerjphillips2010-03-09 14:49:27 +0000
commit520409459340d6ed624969a4174a7c58489fa836 (patch)
tree8b550b89578183c41a2f2892d195d65c4ebf7c04
parent0a00db9e2f23724c3d4e2b69825a4dda44528873 (diff)
downloadorg.eclipse.osee-520409459340d6ed624969a4174a7c58489fa836.tar.gz
org.eclipse.osee-520409459340d6ed624969a4174a7c58489fa836.tar.xz
org.eclipse.osee-520409459340d6ed624969a4174a7c58489fa836.zip
-rw-r--r--org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/revision/RevisionChangeLoader.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/revision/RevisionChangeLoader.java b/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/revision/RevisionChangeLoader.java
index 168f171f10a..643eb237363 100644
--- a/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/revision/RevisionChangeLoader.java
+++ b/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/revision/RevisionChangeLoader.java
@@ -47,6 +47,8 @@ public final class RevisionChangeLoader {
}
/**
+ * @param artifact
+ * @param monitor
* @return Returns artifact, relation and attribute changes from a specific artifact
* @throws OseeCoreException
*/
@@ -76,7 +78,7 @@ public final class RevisionChangeLoader {
IOseeStatement chStmt = ConnectionHandler.getStatement();
try {
chStmt.runPreparedQuery(
- "SELECT /*+ ordered */ txs.transaction_id from osee_arts arv, osee_txs txs where arv.art_id = ? and arv.gamma_id = txs.gamma_id and txs.branch_id = ? and txs.transaction_id <=?",
+ "SELECT /*+ ordered */ txs.transaction_id from osee_attribute arv, osee_txs txs where arv.art_id = ? and arv.gamma_id = txs.gamma_id and txs.branch_id = ? and txs.transaction_id <=?",
artifact.getArtId(), branch.getId(), transactionId.getId());
while (chStmt.next()) {

Back to the top