Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Winkler2010-05-19 10:00:11 +0000
committerStefan Winkler2010-05-19 10:00:11 +0000
commit83656b36c11fe6969ffa6934ae9a1662cc50764c (patch)
tree84f413fd8c5811edeb69096fb5dbca0f6a42c9e6
parent7575914903f1570e7fe462ebb797f275703759db (diff)
downloadcdo-83656b36c11fe6969ffa6934ae9a1662cc50764c.tar.gz
cdo-83656b36c11fe6969ffa6934ae9a1662cc50764c.tar.xz
cdo-83656b36c11fe6969ffa6934ae9a1662cc50764c.zip
[313486] [DB] Typo in CDODBSchema leads to DB initialization error
https://bugs.eclipse.org/bugs/show_bug.cgi?id=313486
-rw-r--r--plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/CDODBSchema.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/CDODBSchema.java b/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/CDODBSchema.java
index 6e089630d2..82b29a86fa 100644
--- a/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/CDODBSchema.java
+++ b/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/CDODBSchema.java
@@ -149,7 +149,7 @@ public class CDODBSchema extends DBSchema
COMMIT_INFOS.addField("comment", DBType.VARCHAR); //$NON-NLS-1$
public static final IDBIndex INDEX_COMMIT_INFOS_PK = //
- BRANCHES.addIndex(IDBIndex.Type.PRIMARY_KEY, COMMIT_INFOS_TIMESTAMP);
+ COMMIT_INFOS.addIndex(IDBIndex.Type.PRIMARY_KEY, COMMIT_INFOS_TIMESTAMP);
public static final IDBIndex INDEX_COMMIT_INFOS_BRANCH = //
COMMIT_INFOS.addIndex(IDBIndex.Type.NON_UNIQUE, COMMIT_INFOS_BRANCH);

Back to the top