From 71b677e8b9ad3e2f2b3d859ea761dcf4235eefd9 Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Fri, 29 Nov 2024 14:13:33 -0600 Subject: [PATCH] Fix urls --- DESCRIPTION | 2 +- R/backend-mssql.R | 2 +- R/backend-oracle.R | 2 +- man/backend-mssql.Rd | 2 +- man/backend-oracle.Rd | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index fb1835022..dec46094b 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -58,7 +58,7 @@ Config/testthat/parallel: TRUE Encoding: UTF-8 Language: en-gb Roxygen: list(markdown = TRUE) -RoxygenNote: 7.3.1 +RoxygenNote: 7.3.2 Collate: 'db-sql.R' 'utils-check.R' diff --git a/R/backend-mssql.R b/R/backend-mssql.R index af30d2859..ac65bc08e 100644 --- a/R/backend-mssql.R +++ b/R/backend-mssql.R @@ -22,7 +22,7 @@ #' #' * The `BOOLEAN` type is the result of logical comparisons (e.g. `x > y`) #' and can be used `WHERE` but not to create new columns in `SELECT`. -#' +#' #' #' * The `BIT` type is a special type of numeric column used to store #' `TRUE` and `FALSE` values, but can't be used in `WHERE` clauses. diff --git a/R/backend-oracle.R b/R/backend-oracle.R index 467f3eb7f..856869c13 100644 --- a/R/backend-oracle.R +++ b/R/backend-oracle.R @@ -13,7 +13,7 @@ #' #' Note that versions of Oracle prior to 23c have limited supported for #' `TRUE` and `FALSE` and you may need to use `1` and `0` instead. -#' See for +#' See for #' more details. #' #' Use `simulate_oracle()` with `lazy_frame()` to see simulated SQL without diff --git a/man/backend-mssql.Rd b/man/backend-mssql.Rd index 7525ffdb5..eca5b21ed 100644 --- a/man/backend-mssql.Rd +++ b/man/backend-mssql.Rd @@ -34,7 +34,7 @@ values: \itemize{ \item The \code{BOOLEAN} type is the result of logical comparisons (e.g. \code{x > y}) and can be used \code{WHERE} but not to create new columns in \code{SELECT}. -\url{https://docs.microsoft.com/en-us/sql/t-sql/language-elements/comparison-operators-transact-sql} +\url{https://learn.microsoft.com/en-us/sql/t-sql/language-elements/comparison-operators-transact-sql} \item The \code{BIT} type is a special type of numeric column used to store \code{TRUE} and \code{FALSE} values, but can't be used in \code{WHERE} clauses. \url{https://learn.microsoft.com/en-us/sql/t-sql/data-types/bit-transact-sql?view=sql-server-ver15} diff --git a/man/backend-oracle.Rd b/man/backend-oracle.Rd index d68275cf0..9562eb0fd 100644 --- a/man/backend-oracle.Rd +++ b/man/backend-oracle.Rd @@ -20,7 +20,7 @@ are: Note that versions of Oracle prior to 23c have limited supported for \code{TRUE} and \code{FALSE} and you may need to use \code{1} and \code{0} instead. -See \url{https://oracle-base.com/articles/23c/boolean-data-type-23c} for +See \url{https://oracle-base.com/articles/23/boolean-data-type-23} for more details. Use \code{simulate_oracle()} with \code{lazy_frame()} to see simulated SQL without