Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjphillips2008-08-04 20:35:01 +0000
committerjphillips2008-08-04 20:35:01 +0000
commit83cbcc93c53ff20184b9aad722eda11d00f9fdd1 (patch)
tree7e84dc75f3d656c4c864414bf059f2e7be28ae8c
parenteb7e895911d14df0103c7fc008885bcda195ef55 (diff)
downloadorg.eclipse.osee-83cbcc93c53ff20184b9aad722eda11d00f9fdd1.tar.gz
org.eclipse.osee-83cbcc93c53ff20184b9aad722eda11d00f9fdd1.tar.xz
org.eclipse.osee-83cbcc93c53ff20184b9aad722eda11d00f9fdd1.zip
-rw-r--r--org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/impl/BranchCreation.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/impl/BranchCreation.java b/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/impl/BranchCreation.java
index 8ddf2952d46..df77435bd21 100644
--- a/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/impl/BranchCreation.java
+++ b/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/impl/BranchCreation.java
@@ -26,7 +26,7 @@ import org.eclipse.osee.framework.jdk.core.util.time.GlobalTime;
public class BranchCreation implements IBranchCreation {
private static final String COPY_BRANCH_ADDRESSING =
- "INSERT INTO osee_define_txs (transaction_id, gamma_id, mod_type, tx_current, commit_art_id) SELECT ?, gamma_id, mod_type, tx_current, commit_art_id FROM osee_define_txs txs1, osee_define_tx_details txd1 WHERE txs1.tx_current = 1 AND txs1.transaction_id = txd1.transaction_id AND txd1.branch_id = ?";
+ "INSERT INTO osee_define_txs (transaction_id, gamma_id, mod_type, tx_current) SELECT ?, gamma_id, mod_type, tx_current FROM osee_define_txs txs1, osee_define_tx_details txd1 WHERE txs1.tx_current = 1 AND txs1.transaction_id = txd1.transaction_id AND txd1.branch_id = ?";
private static final String BRANCH_TABLE_INSERT =
"INSERT INTO OSEE_DEFINE_BRANCH (branch_id, short_name, branch_name, parent_branch_id, archived, associated_art_id) VALUES (?, ?, ?, ?, ?, ?)";

Back to the top