Unit test failure on Oracle because constructor cannot be found

Description

ConstructorResultNativeQueryTest has @SqlResultSetMapping mappings like the following:

{{@SqlResultSetMapping(
name = "person-id-and-name",
classes = {
@ConstructorResult(
targetClass = Person.class,
columns = {
@ColumnResult( name = "id" ),
@ColumnResult( name = "p_name" )
}
)
}
)}}

The corresponding constructor is:

{{public Person(Integer id, String name) {
this.id = id;
this.name = name;
}
}}

The problem is that, for Oracle, the Integer ID is mapped as a Number(10,0) column, so the value will be returned as a BigDecimal. Because the constructor takes an Integer argument (not a BigDecimal), no appropriate constructor can be found.

The fix in this case is to specify the type in the @ColumnResult:

@ColumnResult( name = "id", type=Integer.class )

Activity

Show:

Former userDecember 2, 2015 at 11:08 PM

Fixed in master and 5.0 branches.

Former userNovember 24, 2015 at 6:18 AM
Edited

I've changed ConstructorResultNativeQueryTest to skip the test for Oracle.

I've added OracleConstructorResultNativeQueryTest, which duplicates ConstructorResultNativeQueryTest except that the Integer type is specified for the ID @ColumnResult. This test will be skipped for all dialects except Oracle.

Fixed in master and 5.0 branches.

Fixed

Details

Assignee

Reporter

Components

Fix versions

Affects versions

Priority

Created November 24, 2015 at 5:56 AM
Updated December 3, 2015 at 12:46 AM
Resolved December 2, 2015 at 11:08 PM

Flag notifications