From 46720b6f027a829fb58715d8c204b9de61b3af48 Mon Sep 17 00:00:00 2001 From: Patrick Linskey Date: Mon, 12 May 2008 18:21:28 +0000 Subject: [PATCH] OPENJPA-592. Oops, reverting earlier commit. I got my issue numbers mixed up. If MySQL doesn't have a concept of a schema, I do not believe that we should necessarily try to emulate schemas. git-svn-id: https://svn.apache.org/repos/asf/openjpa/branches/1.1.x@655587 13f79535-47bb-0310-9956-ffa450edef68 --- .../main/java/org/apache/openjpa/jdbc/sql/MySQLDictionary.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/MySQLDictionary.java b/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/MySQLDictionary.java index 84736ddbc..f98128e20 100644 --- a/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/MySQLDictionary.java +++ b/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/MySQLDictionary.java @@ -242,8 +242,6 @@ public class MySQLDictionary if (col.isNotNull() && "0".equals(col.getDefaultString())) col.setDefaultString(null); - col.setSchemaName(colMeta.getString("TABLE_CAT")); - return col; }