We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9cd0bf commit 4a2474bCopy full SHA for 4a2474b
R/data.table.R
@@ -459,9 +459,9 @@ replace_dot_alias = function(e) {
459
if (!len_common_names) stopf("Attempting to do natural join but no common columns in provided tables")
460
if (verbose) {
461
which_cols_msg = if (len_common_names == length(x)) {
462
- catf("Joining but 'x' has no key, natural join using all 'x' columns")
+ catf("Joining but 'x' has no key, natural join using all 'x' columns\n")
463
} else {
464
- catf("Joining but 'x' has no key, natural join using: %s", brackify(common_names))
+ catf("Joining but 'x' has no key, natural join using: %s\n", brackify(common_names))
465
}
466
467
on = common_names
0 commit comments