Skip to content

Commit

Permalink
HHH-7919 : Miscellaneous bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
stliu committed May 31, 2013
1 parent eb9f0be commit cdfdbf4
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
Expand Up @@ -163,7 +163,7 @@ private static void bindEntityResult(final AnnotationBindingContext bindingConte
);

for ( final FieldResult fieldResult : fieldResultList ) {
insert( StringHelper.root( fieldResult.name ), fieldResult.column, propertyResults );
insert( fieldResult.column, StringHelper.root( fieldResult.name ), propertyResults );
}

final NativeSQLQueryRootReturn result = new NativeSQLQueryRootReturn(
Expand Down
Expand Up @@ -159,7 +159,6 @@ public void testClassQueries() throws Exception {
}

@Test
@FailureExpectedWithNewMetamodel
public void testSQLQuery() {
Night n = new Night();
Calendar c = new GregorianCalendar();
Expand Down Expand Up @@ -218,7 +217,6 @@ public void testImportQueryFromMappedSuperclass() {
}

@Test
@FailureExpectedWithNewMetamodel
public void testSQLQueryWithManyToOne() {
cleanupCache();
Night n = new Night();
Expand Down
Expand Up @@ -23,7 +23,6 @@
*/
package org.hibernate.jpa.test.query;

import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Date;
Expand All @@ -43,7 +42,6 @@
import org.hibernate.jpa.test.Item;
import org.hibernate.jpa.test.Wallet;

import org.hibernate.testing.FailureExpectedWithNewMetamodel;
import org.hibernate.testing.TestForIssue;

import static org.junit.Assert.assertEquals;
Expand Down Expand Up @@ -312,7 +310,6 @@ public void testNativeQueryByEntity() {
}

@Test
@FailureExpectedWithNewMetamodel
public void testNativeQueryByResultSet() {
Item item = new Item( "Mouse", "Micro$oft mouse" );

Expand Down Expand Up @@ -603,7 +600,6 @@ public void testUnavailableNamedQuery() throws Exception {
}

@Test
@FailureExpectedWithNewMetamodel
public void testTypedNamedNativeQuery() {
Item item = new Item( "Mouse", "Micro$oft mouse" );

Expand Down

0 comments on commit cdfdbf4

Please sign in to comment.