Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2013-01-30 05:47:43 +0000
committerEike Stepper2013-01-30 06:24:48 +0000
commitb48ab61ba080c6e9c1a4086287cd28a31c53c470 (patch)
treecaa9da6267c1a34de0fc9e3ad492e06902f03230
parent246e19229f3937236e1062e712a378b292b4f7ab (diff)
downloadcdo-b48ab61ba080c6e9c1a4086287cd28a31c53c470.tar.gz
cdo-b48ab61ba080c6e9c1a4086287cd28a31c53c470.tar.xz
cdo-b48ab61ba080c6e9c1a4086287cd28a31c53c470.zip
[396379] [DB] Length of ID column should be configurable
https://bugs.eclipse.org/bugs/show_bug.cgi?id=396379
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_351393_Test.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_351393_Test.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_351393_Test.java
index 70631fc26c..f3b5e192d2 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_351393_Test.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_351393_Test.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* Eike Stepper - initial API and implementation
*/
@@ -13,6 +13,7 @@ package org.eclipse.emf.cdo.tests.bugzilla;
import org.eclipse.emf.cdo.eresource.CDOResource;
import org.eclipse.emf.cdo.session.CDOSession;
import org.eclipse.emf.cdo.tests.AbstractCDOTest;
+import org.eclipse.emf.cdo.tests.config.IRepositoryConfig;
import org.eclipse.emf.cdo.tests.model1.OrderDetail;
import org.eclipse.emf.cdo.tests.model1.Product1;
import org.eclipse.emf.cdo.transaction.CDOTransaction;
@@ -24,10 +25,14 @@ import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;
import org.eclipse.emf.ecore.xmi.impl.XMIResourceFactoryImpl;
/**
+ * Bug 351393: [DB] Make the URI column in the table "cdo_ext_refs" larger
+ *
* @author Stefan Winkler
*/
public class Bugzilla_351393_Test extends AbstractCDOTest
{
+ // Ext-Refs with client-side UUIDs are stored "in sito", where the tests use even less chars.
+ @Skips(IRepositoryConfig.CAPABILITY_UUIDS)
public void testExtRef() throws Exception
{
skipStoreWithoutExternalReferences();

Back to the top