On 8/6/2013 11:47 AM, gordon yorke wrote:
> I agree that the TCK test in this case should not be expected to pass. A provider could raise an
> IllegalArgumentException on that setParamet() call.
> --Gordon
>
Yes, I agree.
-Linda
> On 02/08/2013 8:49 PM, Steve Ebersole wrote:
>> Another TCK oddity. I plan on challenging this one too, but wanted to make sure first:
>>
>> StoredProcedureQuery spq3 = getEntityManager().createStoredProcedureQuery("GetEmpIdUsingHireDateFROMOut");
>> spq3.registerStoredProcedureParameter(1, Calendar.class, ParameterMode.IN);
>> spq3.setParameter(1, getUtilDate());
>>
>> getUtilDate() returns is a Date. I don't see where the spec says this should be valid. Specifically, this registers a
>> parameter and tells the provider to expect a Calendar; it then bind a Date.
>