A = data.table(A=as.complex(1))
B = data.table(A="foo")
rbind(A,B)
# Error in rbindlist(l, use.names, fill, idcol) :
# Unsupported type 'complex' passed to allNA()
Expected:
rbind(A,B)
# A
# <char>
# 1: 0+0i
# 2: foo
The text was updated successfully, but these errors were encountered:
Current behaviour:
Expected:
The text was updated successfully, but these errors were encountered: