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/branches/Branch_3_3@16708 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
ea87fdaef8
commit
5f46c6508b
|
@ -20,7 +20,6 @@
|
|||
* Free Software Foundation, Inc.
|
||||
* 51 Franklin Street, Fifth Floor
|
||||
* Boston, MA 02110-1301 USA
|
||||
*
|
||||
*/
|
||||
package org.hibernate.id.enhanced;
|
||||
|
||||
|
@ -68,7 +67,7 @@ public class TableStructure extends TransactionHelper implements DatabaseStructu
|
|||
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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue