Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngel Avila2016-08-04 23:22:04 +0000
committerDonald Dunne2016-08-05 14:58:58 +0000
commit77daface8e97253e4dc67dbbcabca232a4f42e2f (patch)
treeba27ea4642276ba0bdf9bceeaf41f91c0a5fdf78
parent9d0e45f195dfda7346cae2c9f4fb70158f645dfc (diff)
downloadorg.eclipse.osee-0.24.0.v201608050210-NR.tar.gz
org.eclipse.osee-0.24.0.v201608050210-NR.tar.xz
org.eclipse.osee-0.24.0.v201608050210-NR.zip
bug[ats_ATS306950]: Fix Change Report throws Exception0.24.0.v201608050210-NR
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/transaction/TransactionManager.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/transaction/TransactionManager.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/transaction/TransactionManager.java
index fdc346c90a2..ee646e982bc 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/transaction/TransactionManager.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/transaction/TransactionManager.java
@@ -46,8 +46,7 @@ public final class TransactionManager {
private static final String SELECT_TRANSACTIONS =
"SELECT * FROM osee_tx_details WHERE branch_id = ? ORDER BY transaction_id DESC";
- private static final String SELECT_COMMIT_TRANSACTIONS =
- "SELECT transaction_id FROM osee_tx_details WHERE commit_art_id = ?";
+ private static final String SELECT_COMMIT_TRANSACTIONS = "SELECT * FROM osee_tx_details WHERE commit_art_id = ?";
private static final String UPDATE_TRANSACTION_COMMENTS =
"UPDATE osee_tx_details SET osee_comment = ? WHERE transaction_id = ?";

Back to the top