https://github.com/hadley/dplyr
Raw File
Tip revision: 2b488e0d0d23282e625570989a825291651b5ece authored by Davis Vaughan on 29 April 2020, 14:21:31 UTC
Simplify `dplyr_reconstruct()` (#5160)
Tip revision: 2b488e0
ident.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/compat-dbplyr.R
\name{ident}
\alias{ident}
\title{Flag a character vector as SQL identifiers}
\usage{
ident(...)
}
\arguments{
\item{...}{A character vector, or name-value pairs}
}
\description{
\code{ident()} takes unquoted strings and flags them as identifiers.
\code{ident_q()} assumes its input has already been quoted, and ensures
it does not get quoted again. This is currently used only for
for \code{schema.table}.
}
\examples{
# Identifiers are escaped with "
if (requireNamespace("dbplyr", quietly = TRUE)) {
  ident("x")
}
}
back to top