File: auto_copy.Rd

package info (click to toggle)
r-cran-dplyr 1.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,452 kB
  • sloc: cpp: 1,264; sh: 16; makefile: 9
file content (21 lines) | stat: -rw-r--r-- 683 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/copy-to.r
\name{auto_copy}
\alias{auto_copy}
\title{Copy tables to same source, if necessary}
\usage{
auto_copy(x, y, copy = FALSE, ...)
}
\arguments{
\item{x, y}{\code{y} will be copied to \code{x}, if necessary.}

\item{copy}{If \code{x} and \code{y} are not from the same data source,
and \code{copy} is \code{TRUE}, then \code{y} will be copied into the
same src as \code{x}.  This allows you to join tables across srcs, but
it is a potentially expensive operation so you must opt into it.}

\item{...}{Other arguments passed on to methods.}
}
\description{
Copy tables to same source, if necessary
}