From e6918187568dbd01842d8d1d2c808ce16a894239 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:54:28 +0200 Subject: Adding upstream version 18.2.2. Signed-off-by: Daniel Baumann --- src/arrow/r/man/unify_schemas.Rd | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/arrow/r/man/unify_schemas.Rd (limited to 'src/arrow/r/man/unify_schemas.Rd') diff --git a/src/arrow/r/man/unify_schemas.Rd b/src/arrow/r/man/unify_schemas.Rd new file mode 100644 index 000000000..50c80c2dd --- /dev/null +++ b/src/arrow/r/man/unify_schemas.Rd @@ -0,0 +1,27 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/schema.R +\name{unify_schemas} +\alias{unify_schemas} +\title{Combine and harmonize schemas} +\usage{ +unify_schemas(..., schemas = list(...)) +} +\arguments{ +\item{...}{\link{Schema}s to unify} + +\item{schemas}{Alternatively, a list of schemas} +} +\value{ +A \code{Schema} with the union of fields contained in the inputs, or +\code{NULL} if any of \code{schemas} is \code{NULL} +} +\description{ +Combine and harmonize schemas +} +\examples{ +\dontshow{if (arrow_available()) (if (getRversion() >= "3.4") withAutoprint else force)(\{ # examplesIf} +a <- schema(b = double(), c = bool()) +z <- schema(b = double(), k = utf8()) +unify_schemas(a, z) +\dontshow{\}) # examplesIf} +} -- cgit v1.2.3