@@ -15156,15 +15156,15 @@ if (test_bit64) {
1515615156dt1 = data.table(a=1, b=NA_character_)
1515715157dt2 = data.table(a=2L, b=NA)
1515815158test(2044.80, dt1[dt2, on="a==b", verbose=TRUE], data.table(a=NA, b=NA_character_, i.a=2L),
15159- output=msg<-"Coercing all-NA i.b (logical) to type double to match type of x.a")
15159+ output=msg<-"Coercing all-NA logical column i.b to type double to match type of x.a")
1516015160test(2044.81, dt1[dt2, on="a==b", nomatch=0L, verbose=TRUE], data.table(a=logical(), b=character(), i.a=integer()),
1516115161 output=msg)
1516215162test(2044.82, dt1[dt2, on="b==b", verbose=TRUE], data.table(a=1, b=NA, i.a=2L),
15163- output=msg<-"Coercing all-NA i.b (logical) to type character to match type of x.b")
15163+ output=msg<-"Coercing all-NA logical column i.b to type character to match type of x.b")
1516415164test(2044.83, dt1[dt2, on="b==b", nomatch=0L, verbose=TRUE], data.table(a=1, b=NA, i.a=2L),
1516515165 output=msg)
1516615166test(2044.84, dt1[dt2, on="b==a", verbose=TRUE], data.table(a=NA_real_, b=2L, i.b=NA),
15167- output=msg<-"Coercing all-NA x.b (character) to type integer to match type of i.a")
15167+ output=msg<-"Coercing all-NA character column x.b to type integer to match type of i.a")
1516815168test(2044.85, dt1[dt2, on="b==a", nomatch=0L, verbose=TRUE], data.table(a=double(), b=integer(), i.b=logical()),
1516915169 output=msg)
1517015170
0 commit comments