From 3fa609873b76746455b7c0355de7ac4dda52a14e Mon Sep 17 00:00:00 2001 From: Patrick Linskey Date: Tue, 28 Aug 2007 21:50:01 +0000 Subject: [PATCH] OPENJPA-282 -- part two. No test case. git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@570580 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/openjpa/jdbc/sql/PostgresDictionary.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/PostgresDictionary.java b/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/PostgresDictionary.java index 1ca7f137f..a6bd7a4b0 100644 --- a/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/PostgresDictionary.java +++ b/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/PostgresDictionary.java @@ -94,10 +94,10 @@ public class PostgresDictionary // PostgreSQL requires double-escape for strings searchStringEscape = "\\\\"; - maxTableNameLength = 31; - maxColumnNameLength = 31; - maxIndexNameLength = 31; - maxConstraintNameLength = 31; + maxTableNameLength = 63; + maxColumnNameLength = 63; + maxIndexNameLength = 63; + maxConstraintNameLength = 63; schemaCase = SCHEMA_CASE_LOWER; rangePosition = RANGE_POST_LOCK; requiresAliasForSubselect = true;