[hibernate-issues] [Hibernate-JIRA] Created: (HHH-7207) SQLServer2005Dialect.insertRowNumberFunction() is broken for field names containing "from"

Holger Pretzsch (JIRA) noreply at atlassian.com
Thu Mar 29 06:40:48 EDT 2012


SQLServer2005Dialect.insertRowNumberFunction() is broken for field names containing "from"
------------------------------------------------------------------------------------------

                 Key: HHH-7207
                 URL: https://hibernate.onjira.com/browse/HHH-7207
             Project: Hibernate ORM
          Issue Type: Bug
          Components: query-sql
    Affects Versions: 4.1.1
         Environment: Hibernate 4.1.1, Microsoft SQL
            Reporter: Holger Pretzsch


The Microsoft SQL 2005 and 2008 dialects, which are both based on SQLServer2005Dialect, create broken queries when the entities involved have a mapped column with a name containing "from". This is evidently happens because of the implementation of the dialect's insertRowNumberFunction() method

{code}
	protected void insertRowNumberFunction(StringBuilder sql, CharSequence orderby) {
		// Find the end of the select statement
		int selectEndIndex = sql.indexOf( FROM );

		// Insert after the select statement the row_number() function:
		sql.insert( selectEndIndex - 1, ", ROW_NUMBER() OVER (" + orderby + ") as __hibernate_row_nr__" );
	}
{code}

which searches the entire query string for the string "from" and inserts the given string at the first occurance. This will break queries if "from" appears as a column name.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the hibernate-issues mailing list