@@ -361,7 +361,7 @@ void intPrimitive() {
361
361
testCodec (Integer .class , 100 , "INT2" , R2dbcType .SMALLINT );
362
362
testCodec (Integer .class , 100 , "INT4" , R2dbcType .INTEGER );
363
363
testCodec (Integer .class , 100 , "INT8" , R2dbcType .INTEGER );
364
- testCodec (Integer .class , 100 , "OID" );
364
+ testCodec (Long . class , 2314556683L , Integer .class , ( actual , expected ) -> assertThat ( actual ). isEqualTo (- 1980410613 ), "OID" , "$1" , null );
365
365
testCodec (Integer .class , 100 , "NUMERIC" , R2dbcType .NUMERIC );
366
366
testCodec (Integer .class , 100 , "FLOAT4" , R2dbcType .FLOAT );
367
367
testCodec (Integer .class , 100 , "FLOAT8" , R2dbcType .DOUBLE );
@@ -460,7 +460,7 @@ void longPrimitive() {
460
460
testCodec (Long .class , 100L , "INT2" );
461
461
testCodec (Long .class , 100L , "INT4" );
462
462
testCodec (Long .class , 100L , "INT8" );
463
- testCodec (Long .class , 100L , "OID" );
463
+ testCodec (Long .class , 2314556683L , "OID" );
464
464
testCodec (Long .class , 100L , "NUMERIC" );
465
465
testCodec (Long .class , 100L , "FLOAT4" );
466
466
testCodec (Long .class , 100L , "FLOAT8" );
0 commit comments