HHH-9707 - Nulls first behavior on SQLServer database
(cherry picked from commit6f37a2ee6b
) Conflicts: hibernate-core/src/main/java/org/hibernate/dialect/SQLServer2012Dialect.java HHH-9707 - Nulls first behavior on SQLServer database (cherry picked from commit046426b619
) Conflicts: hibernate-core/src/main/java/org/hibernate/dialect/SQLServer2012Dialect.java
This commit is contained in:
parent
37964f12e4
commit
cbf255e4f0
|
@ -8,6 +8,7 @@ package org.hibernate.dialect;
|
||||||
|
|
||||||
import java.sql.Types;
|
import java.sql.Types;
|
||||||
|
|
||||||
|
import org.hibernate.NullPrecedence;
|
||||||
import org.hibernate.dialect.function.NoArgSQLFunction;
|
import org.hibernate.dialect.function.NoArgSQLFunction;
|
||||||
import org.hibernate.type.StandardBasicTypes;
|
import org.hibernate.type.StandardBasicTypes;
|
||||||
|
|
||||||
|
@ -29,4 +30,26 @@ public class SQLServer2008Dialect extends SQLServer2005Dialect {
|
||||||
"current_timestamp", new NoArgSQLFunction( "current_timestamp", StandardBasicTypes.TIMESTAMP, false )
|
"current_timestamp", new NoArgSQLFunction( "current_timestamp", StandardBasicTypes.TIMESTAMP, false )
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String renderOrderByElement(String expression, String collation, String order, NullPrecedence nulls) {
|
||||||
|
final StringBuilder orderByElement = new StringBuilder();
|
||||||
|
|
||||||
|
if ( nulls != null && !NullPrecedence.NONE.equals( nulls ) ) {
|
||||||
|
// Workaround for NULLS FIRST / LAST support.
|
||||||
|
orderByElement.append( "case when " ).append( expression ).append( " is null then " );
|
||||||
|
if ( NullPrecedence.FIRST.equals( nulls ) ) {
|
||||||
|
orderByElement.append( "0 else 1" );
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
orderByElement.append( "1 else 0" );
|
||||||
|
}
|
||||||
|
orderByElement.append( " end, " );
|
||||||
|
}
|
||||||
|
|
||||||
|
// Nulls precedence has already been handled so passing NONE value.
|
||||||
|
orderByElement.append( super.renderOrderByElement( expression, collation, order, NullPrecedence.NONE ) );
|
||||||
|
|
||||||
|
return orderByElement.toString();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -203,5 +203,6 @@ public class SQLServerDialect extends AbstractTransactSQLDialect {
|
||||||
public int getInExpressionCountLimit() {
|
public int getInExpressionCountLimit() {
|
||||||
return PARAM_LIST_SIZE_LIMIT;
|
return PARAM_LIST_SIZE_LIMIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -26,6 +26,9 @@ import org.hibernate.Session;
|
||||||
import org.hibernate.dialect.H2Dialect;
|
import org.hibernate.dialect.H2Dialect;
|
||||||
import org.hibernate.dialect.MySQLDialect;
|
import org.hibernate.dialect.MySQLDialect;
|
||||||
import org.hibernate.dialect.Oracle8iDialect;
|
import org.hibernate.dialect.Oracle8iDialect;
|
||||||
|
import org.hibernate.dialect.SQLServer2008Dialect;
|
||||||
|
import org.hibernate.dialect.SQLServer2012Dialect;
|
||||||
|
import org.hibernate.dialect.SQLServerDialect;
|
||||||
import org.hibernate.engine.spi.SessionImplementor;
|
import org.hibernate.engine.spi.SessionImplementor;
|
||||||
import org.hibernate.persister.collection.CollectionPersister;
|
import org.hibernate.persister.collection.CollectionPersister;
|
||||||
import org.hibernate.persister.collection.QueryableCollection;
|
import org.hibernate.persister.collection.QueryableCollection;
|
||||||
|
@ -80,10 +83,10 @@ public class OrderByTest extends BaseCoreFunctionalTestCase {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestForIssue(jiraKey = "HHH-465")
|
@TestForIssue(jiraKey = "HHH-465")
|
||||||
@RequiresDialect(value = { H2Dialect.class, MySQLDialect.class },
|
@RequiresDialect(value = { H2Dialect.class, MySQLDialect.class, SQLServer2008Dialect.class },
|
||||||
comment = "By default H2 places NULL values first, so testing 'NULLS LAST' expression. " +
|
comment = "By default H2 places NULL values first, so testing 'NULLS LAST' expression. " +
|
||||||
"For MySQL testing overridden Dialect#renderOrderByElement(String, String, String, NullPrecedence) method. " +
|
"For MySQL and SQL Server 2008 testing overridden Dialect#renderOrderByElement(String, String, String, NullPrecedence) method. " +
|
||||||
"MySQL does not support NULLS FIRST / LAST syntax at the moment, so transforming the expression to 'CASE WHEN ...'.")
|
"MySQL and SQLServer 2008 does not support NULLS FIRST / LAST syntax at the moment, so transforming the expression to 'CASE WHEN ...'.")
|
||||||
public void testAnnotationNullsFirstLast() {
|
public void testAnnotationNullsFirstLast() {
|
||||||
Session session = openSession();
|
Session session = openSession();
|
||||||
|
|
||||||
|
@ -139,10 +142,10 @@ public class OrderByTest extends BaseCoreFunctionalTestCase {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestForIssue(jiraKey = "HHH-465")
|
@TestForIssue(jiraKey = "HHH-465")
|
||||||
@RequiresDialect(value = { H2Dialect.class, MySQLDialect.class },
|
@RequiresDialect(value = { H2Dialect.class, MySQLDialect.class, SQLServer2008Dialect.class },
|
||||||
comment = "By default H2 places NULL values first, so testing 'NULLS LAST' expression. " +
|
comment = "By default H2 places NULL values first, so testing 'NULLS LAST' expression. " +
|
||||||
"For MySQL testing overridden Dialect#renderOrderByElement(String, String, String, NullPrecedence) method. " +
|
"For MySQL and SQL Server 2008 testing overridden Dialect#renderOrderByElement(String, String, String, NullPrecedence) method. " +
|
||||||
"MySQL does not support NULLS FIRST / LAST syntax at the moment, so transforming the expression to 'CASE WHEN ...'.")
|
"MySQL and SQL Server 2008 does not support NULLS FIRST / LAST syntax at the moment, so transforming the expression to 'CASE WHEN ...'.")
|
||||||
public void testCriteriaNullsFirstLast() {
|
public void testCriteriaNullsFirstLast() {
|
||||||
Session session = openSession();
|
Session session = openSession();
|
||||||
|
|
||||||
|
@ -177,10 +180,10 @@ public class OrderByTest extends BaseCoreFunctionalTestCase {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestForIssue(jiraKey = "HHH-465")
|
@TestForIssue(jiraKey = "HHH-465")
|
||||||
@RequiresDialect(value = { H2Dialect.class, MySQLDialect.class },
|
@RequiresDialect(value = { H2Dialect.class, MySQLDialect.class, SQLServer2008Dialect.class },
|
||||||
comment = "By default H2 places NULL values first, so testing 'NULLS LAST' expression. " +
|
comment = "By default H2 places NULL values first, so testing 'NULLS LAST' expression. " +
|
||||||
"For MySQL testing overridden Dialect#renderOrderByElement(String, String, String, NullPrecedence) method. " +
|
"For MySQL and SQL Server 2008 testing overridden Dialect#renderOrderByElement(String, String, String, NullPrecedence) method. " +
|
||||||
"MySQL does not support NULLS FIRST / LAST syntax at the moment, so transforming the expression to 'CASE WHEN ...'.")
|
"MySQL and SQL Server 2008 does not support NULLS FIRST / LAST syntax at the moment, so transforming the expression to 'CASE WHEN ...'.")
|
||||||
public void testNullsFirstLastSpawnMultipleColumns() {
|
public void testNullsFirstLastSpawnMultipleColumns() {
|
||||||
Session session = openSession();
|
Session session = openSession();
|
||||||
|
|
||||||
|
@ -226,10 +229,10 @@ public class OrderByTest extends BaseCoreFunctionalTestCase {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestForIssue(jiraKey = "HHH-465")
|
@TestForIssue(jiraKey = "HHH-465")
|
||||||
@RequiresDialect(value = { H2Dialect.class, MySQLDialect.class },
|
@RequiresDialect(value = { H2Dialect.class, MySQLDialect.class, SQLServer2008Dialect.class },
|
||||||
comment = "By default H2 places NULL values first, so testing 'NULLS LAST' expression. " +
|
comment = "By default H2 places NULL values first, so testing 'NULLS LAST' expression. " +
|
||||||
"For MySQL testing overridden Dialect#renderOrderByElement(String, String, String, NullPrecedence) method. " +
|
"For MySQL and SQL Server 2008 testing overridden Dialect#renderOrderByElement(String, String, String, NullPrecedence) method. " +
|
||||||
"MySQL does not support NULLS FIRST / LAST syntax at the moment, so transforming the expression to 'CASE WHEN ...'.")
|
"MySQL and SQL Server 2008 does not support NULLS FIRST / LAST syntax at the moment, so transforming the expression to 'CASE WHEN ...'.")
|
||||||
public void testHqlNullsFirstLast() {
|
public void testHqlNullsFirstLast() {
|
||||||
Session session = openSession();
|
Session session = openSession();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue