Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2013-09-04 10:21:17 +0000
committerEike Stepper2013-09-04 10:21:17 +0000
commit0b9dbea05b9310dd9ccd133c05f92b3ed18fc442 (patch)
treef608e214917f2fd5de4669ae248fd24cc27c5ea3
parent36696d97049530848bc0f891592210dee0fc3aeb (diff)
downloadcdo-0b9dbea05b9310dd9ccd133c05f92b3ed18fc442.tar.gz
cdo-0b9dbea05b9310dd9ccd133c05f92b3ed18fc442.tar.xz
cdo-0b9dbea05b9310dd9ccd133c05f92b3ed18fc442.zip
[416474] [OCL] Add some non-standard operations to support efficient OCL
queries https://bugs.eclipse.org/bugs/show_bug.cgi?id=416474 Change-Id: I8ae59bda5cb20a1cbfee1fae81713032b6627e79
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_416474_Test.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_416474_Test.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_416474_Test.java
index f8ed46b18e..a6e4d24cb0 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_416474_Test.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_416474_Test.java
@@ -124,7 +124,7 @@ public class Bugzilla_416474_Test extends AbstractCDOTest
CDOView newView = session.openView();
CDOQuery ocl = newView.createQuery("ocl",
- "EModelElement.allInstances()->select(e | e.cdoMatches('.*http://www.eclipse.org/CDO/test/bug416474.*'))",
+ "EModelElement.allInstances()->select(e | e.cdoMatches('http://www.eclipse.org/CDO/test/.*_416474_3'))",
EcorePackage.Literals.EPACKAGE);
List<?> results = ocl.getResult();

Back to the top