Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/SQLConstants.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/SQLConstants.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/SQLConstants.java
index ac42d7173a..1e8c720b1f 100644
--- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/SQLConstants.java
+++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/SQLConstants.java
@@ -90,7 +90,7 @@ public interface SQLConstants
public static final String REFERENCE_TARGET_COLUMN = "TARGET" + OBJECT_OID_COLUMN;
//--------------------------------------------------------------------
- public static final String USER_OID_COLUMN = "___" + OBJECT_OID_COLUMN + "___";
+ public static final String USER_OID_COLUMN = "CDO_" + OBJECT_OID_COLUMN;
//--------------------------------------------------------------------
public static final String SELECT_PACKAGES = "SELECT " + PACKAGE_PID_COLUMN + ", "

Back to the top