@@ -2367,9 +2367,9 @@ func TestReplaceInto(t *testing.T) {
2367
2367
[]sql.Row {{
2368
2368
int64 (999 ), int8 (math .MaxInt8 ), int16 (math .MaxInt16 ), int32 (math .MaxInt32 ), int64 (math .MaxInt64 ),
2369
2369
uint8 (math .MaxUint8 ), uint16 (math .MaxUint16 ), uint32 (math .MaxUint32 ), uint64 (math .MaxUint64 ),
2370
- float64 (math .MaxFloat32 ), float64 (math .MaxFloat64 ),
2370
+ float32 (math .MaxFloat32 ), float64 (math .MaxFloat64 ),
2371
2371
timeParse (sql .TimestampLayout , "2132-04-05 12:51:36" ), timeParse (sql .DateLayout , "2231-11-07" ),
2372
- "random text" , true , `{"key":"value"}` , "blobdata" ,
2372
+ "random text" , true , ([] byte )( `{"key":"value"}` ), ([] byte )( "blobdata" ) ,
2373
2373
}},
2374
2374
},
2375
2375
{
@@ -2385,9 +2385,9 @@ func TestReplaceInto(t *testing.T) {
2385
2385
[]sql.Row {{
2386
2386
int64 (999 ), int8 (math .MaxInt8 ), int16 (math .MaxInt16 ), int32 (math .MaxInt32 ), int64 (math .MaxInt64 ),
2387
2387
uint8 (math .MaxUint8 ), uint16 (math .MaxUint16 ), uint32 (math .MaxUint32 ), uint64 (math .MaxUint64 ),
2388
- float64 (math .MaxFloat32 ), float64 (math .MaxFloat64 ),
2388
+ float32 (math .MaxFloat32 ), float64 (math .MaxFloat64 ),
2389
2389
timeParse (sql .TimestampLayout , "2132-04-05 12:51:36" ), timeParse (sql .DateLayout , "2231-11-07" ),
2390
- "random text" , true , `{"key":"value"}` , "blobdata" ,
2390
+ "random text" , true , ([] byte )( `{"key":"value"}` ), ([] byte )( "blobdata" ) ,
2391
2391
}},
2392
2392
},
2393
2393
{
@@ -2403,9 +2403,9 @@ func TestReplaceInto(t *testing.T) {
2403
2403
[]sql.Row {{
2404
2404
int64 (999 ), int8 (- math .MaxInt8 - 1 ), int16 (- math .MaxInt16 - 1 ), int32 (- math .MaxInt32 - 1 ), int64 (- math .MaxInt64 - 1 ),
2405
2405
uint8 (0 ), uint16 (0 ), uint32 (0 ), uint64 (0 ),
2406
- float64 (math .SmallestNonzeroFloat32 ), float64 (math .SmallestNonzeroFloat64 ),
2406
+ float32 (math .SmallestNonzeroFloat32 ), float64 (math .SmallestNonzeroFloat64 ),
2407
2407
timeParse (sql .TimestampLayout , "0010-04-05 12:51:36" ), timeParse (sql .DateLayout , "0101-11-07" ),
2408
- "" , false , `` , "" ,
2408
+ "" , false , ([] byte )( `""` ), ([] byte )( "" ) ,
2409
2409
}},
2410
2410
},
2411
2411
{
@@ -2421,9 +2421,9 @@ func TestReplaceInto(t *testing.T) {
2421
2421
[]sql.Row {{
2422
2422
int64 (999 ), int8 (- math .MaxInt8 - 1 ), int16 (- math .MaxInt16 - 1 ), int32 (- math .MaxInt32 - 1 ), int64 (- math .MaxInt64 - 1 ),
2423
2423
uint8 (0 ), uint16 (0 ), uint32 (0 ), uint64 (0 ),
2424
- float64 (math .SmallestNonzeroFloat32 ), float64 (math .SmallestNonzeroFloat64 ),
2424
+ float32 (math .SmallestNonzeroFloat32 ), float64 (math .SmallestNonzeroFloat64 ),
2425
2425
timeParse (sql .TimestampLayout , "0010-04-05 12:51:36" ), timeParse (sql .DateLayout , "0101-11-07" ),
2426
- "" , false , `` , "" ,
2426
+ "" , false , ([] byte )( `""` ), ([] byte )( "" ) ,
2427
2427
}},
2428
2428
},
2429
2429
{
0 commit comments