You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
stopf("Incompatible join types: %s (%s) and %s (%s). Factor columns must join to factor or character columns.", xname, x_merge_type, iname, i_merge_type)
93
90
}
91
+
if (x_merge_type==i_merge_type) {
92
+
if (verbose) catf("%s has same type (%s) as %s. No coercion needed.\n", iname, x_merge_type, xname)
93
+
next
94
+
}
94
95
cfl= c("character", "logical", "factor")
95
96
if (x_merge_type %chin% cfl||i_merge_type %chin% cfl) {
96
97
msg=if(verbose) gettext("Coercing all-NA %s column %s to type %s to match type of %s.\n") elseNULL
0 commit comments