Skip to content

Commit

Permalink
Merge pull request #791 from beikov/HHH-9300
Browse files Browse the repository at this point in the history
Added test for HHH-9300
  • Loading branch information
sebersole committed Mar 25, 2015
2 parents 1227b73 + a3094b0 commit f00e4df
Showing 1 changed file with 58 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* Copyright (c) 2009, Red Hat, Inc. and/or its affiliates or third-
* party contributors as indicated by the @author tags or express
* copyright attribution statements applied by the authors.
* All third-party contributions are distributed under license by
* Red Hat, Inc.
*
* This copyrighted material is made available to anyone wishing to
* use, modify, copy, or redistribute it subject to the terms and
* conditions of the GNU Lesser General Public License, as published
* by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this distribution; if not, write to:
*
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
package org.hibernate.test.dialect.functional;

import org.hibernate.Session;
import org.hibernate.dialect.DB2Dialect;
import org.hibernate.testing.RequiresDialect;
import org.hibernate.testing.TestForIssue;
import org.hibernate.testing.junit4.BaseCoreFunctionalTestCase;
import org.junit.Test;

/**
*
* @author Christian Beikov
*/
@RequiresDialect(value = { DB2Dialect.class })
public class DB2DialectTest extends BaseCoreFunctionalTestCase {


@Test
@TestForIssue(jiraKey = "HHH-9300")
public void testPaginationWithTrailingSemicolon() throws Exception {
Session s = openSession();
s.createQuery( "FROM Product2 ORDER BY id ASC NULLS FIRST" ).list();
s.close();
}

@Override
protected java.lang.Class<?>[] getAnnotatedClasses() {
return new java.lang.Class[] {
Product2.class, Category.class, Folder.class, Contact.class
};
}
}

0 comments on commit f00e4df

Please sign in to comment.