Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrescobar2009-12-03 17:03:42 +0000
committerrescobar2009-12-03 17:03:42 +0000
commit26588de790844201aab48d323ff9ff1886119bab (patch)
tree754cbeff856904fc0ad3ed4831462a1233c03e99 /org.eclipse.osee.framework.branch.management
parent1c1f958ff1702cd23a55e2bbf99efac556354f91 (diff)
downloadorg.eclipse.osee-26588de790844201aab48d323ff9ff1886119bab.tar.gz
org.eclipse.osee-26588de790844201aab48d323ff9ff1886119bab.tar.xz
org.eclipse.osee-26588de790844201aab48d323ff9ff1886119bab.zip
added branch_id to support archive insert query
Diffstat (limited to 'org.eclipse.osee.framework.branch.management')
-rw-r--r--org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/cache/BranchStoreOperation.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/cache/BranchStoreOperation.java b/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/cache/BranchStoreOperation.java
index 7ef66af103b..46364d6e2ef 100644
--- a/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/cache/BranchStoreOperation.java
+++ b/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/cache/BranchStoreOperation.java
@@ -41,7 +41,7 @@ public class BranchStoreOperation extends AbstractDbTxOperation {
private static final String DELETE_BRANCH_ALIASES = "delete from osee_branch_definitions where mapped_branch_id = ?";
private static final String INSERT_ADDRESSING =
- "insert into %s (transaction_id, gamma_id, tx_current, mod_type) select transaction_id, gamma_id, tx_current, mod_type from osee_txs where branch_id = ?";
+ "insert into %s (transaction_id, gamma_id, tx_current, mod_type, branch_id) select transaction_id, gamma_id, tx_current, mod_type, branch_id from osee_txs where branch_id = ?";
public static final String DELETE_ADDRESSING = "delete from %s where branch_id = ?";

Back to the top