HHH-3880 - org.hibernate.id.enhanced.TableStructure missing "as" keyword in select statment column renames; required for PostgreSQL

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16706 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Steve Ebersole 2009-06-05 14:04:57 +00:00
parent e177341bd2
commit d68a7fe803

View File

@ -68,7 +68,7 @@ public TableStructure(Dialect dialect, String tableName, String valueColumnName,
this.incrementSize = incrementSize;
this.valueColumnName = valueColumnName;
selectQuery = "select " + valueColumnName + " id_val" +
selectQuery = "select " + valueColumnName + " as id_val" +
" from " + dialect.appendLockHint( LockMode.UPGRADE, tableName ) +
dialect.getForUpdateString();