Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrescobar2011-08-08 18:46:18 +0000
committerRyan D. Brooks2011-08-08 18:46:18 +0000
commit13670d3fa4e36421770ae281f965cd97c3ef9088 (patch)
tree9cb8c022d3edf85f893e88aee9be2a009053ae95 /plugins/org.eclipse.osee.framework.branch.management
parentf1761ce47cb9468711de62479074240e3498b26d (diff)
downloadorg.eclipse.osee-13670d3fa4e36421770ae281f965cd97c3ef9088.tar.gz
org.eclipse.osee-13670d3fa4e36421770ae281f965cd97c3ef9088.tar.xz
org.eclipse.osee-13670d3fa4e36421770ae281f965cd97c3ef9088.zip
bug: Add mapping for baseline and parent transaction_id during db import
Diffstat (limited to 'plugins/org.eclipse.osee.framework.branch.management')
-rw-r--r--plugins/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/exchange/ExchangeDb.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/exchange/ExchangeDb.java b/plugins/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/exchange/ExchangeDb.java
index d361cb85bc6..b251beb98ca 100644
--- a/plugins/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/exchange/ExchangeDb.java
+++ b/plugins/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/exchange/ExchangeDb.java
@@ -61,7 +61,10 @@ public final class ExchangeDb {
private static final String[] GAMMA_ID_REG_ALIASES = new String[] {"source_gamma_id", "dest_gamma_id"};
- private static final String[] TRANSACTION_ID_REG_ALIASES = new String[0];
+ private static final String[] TRANSACTION_ID_REG_ALIASES = new String[] {
+ "baseline_transaction_id",
+ "parent_transaction_id"};
+
private static final String[] TRANSACTION_ID_NEG_ONE_ALIASES = new String[] {"commit_transaction_id"};
private static final String[] ARTIFACT_ID_ALIASES;

Back to the top