Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/mapping/horizontal/BranchingFeatureMapTableMappingWithRanges.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/mapping/horizontal/BranchingFeatureMapTableMappingWithRanges.java b/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/mapping/horizontal/BranchingFeatureMapTableMappingWithRanges.java
index 0cc0a1301b..57076ca100 100644
--- a/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/mapping/horizontal/BranchingFeatureMapTableMappingWithRanges.java
+++ b/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/mapping/horizontal/BranchingFeatureMapTableMappingWithRanges.java
@@ -244,9 +244,6 @@ public class BranchingFeatureMapTableMappingWithRanges extends BasicAbstractList
builder.append(","); //$NON-NLS-1$
builder.append(CDODBSchema.FEATUREMAP_VERSION_REMOVED);
builder.append(","); //$NON-NLS-1$
- builder.append(CDODBSchema.FEATUREMAP_IDX);
- builder.append(","); //$NON-NLS-1$
- builder.append(CDODBSchema.FEATUREMAP_VALUE);
for (int i = 0; i < columnNames.size(); i++)
{
@@ -257,7 +254,7 @@ public class BranchingFeatureMapTableMappingWithRanges extends BasicAbstractList
builder.append(CDODBSchema.FEATUREMAP_IDX);
builder.append(", "); //$NON-NLS-1$
builder.append(CDODBSchema.FEATUREMAP_TAG);
- builder.append(") VALUES (?, ?, ?, ?, ?, ?, "); //$NON-NLS-1$
+ builder.append(") VALUES (?, ?, ?, ?, "); //$NON-NLS-1$
for (int i = 0; i < columnNames.size(); i++)
{
builder.append("?, "); //$NON-NLS-1$
@@ -1214,7 +1211,6 @@ public class BranchingFeatureMapTableMappingWithRanges extends BasicAbstractList
pstmt.setInt(stmtIndex++, branchId);
pstmt.setInt(stmtIndex++, version);
pstmt.setNull(stmtIndex++, DBType.INTEGER.getCode()); // versionRemoved
- pstmt.setInt(stmtIndex++, index);
for (int i = 0; i < columnNames.size(); i++)
{

Back to the top