OPENJPA-282 -- part two. No test case.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@570580 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Patrick Linskey 2007-08-28 21:50:01 +00:00
parent e959466d1d
commit 3fa609873b
1 changed files with 4 additions and 4 deletions

View File

@ -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;