Skip to content

Commit aa07e1e

Browse files
committed
Merge branch 'main' into f-join-multi-detect
2 parents 1c4605b + 6e976c5 commit aa07e1e

File tree

18 files changed

+27
-17
lines changed

18 files changed

+27
-17
lines changed

R/ducktbl.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#' dplyr verbs such as [mutate()], [select()] or [filter()] will use DuckDB.
99
#'
1010
#' `duckdb_tibble()` works like [tibble()], returning a lavish duckplyr data frame by default.
11-
#' See `vignette("funnel")` for details.
11+
#' See `vignette("prudence")` for details.
1212
#'
1313
#' @param ... For `duckdb_tibble()`, passed on to [tibble()].
1414
#' For `as_duckdb_tibble()`, passed on to methods.

R/io2.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ read_json_duckdb <- function(path, ..., prudence = c("thrifty", "lavish", "fruga
9292
#' `"read_csv"`, `"read_csv_auto"` or `"read_json"`.
9393
#' @param prudence Logical, whether to create a frugal duckplyr frame.
9494
#' By default, a frugal duckplyr frame, with a limit of one million cells, is created.
95-
#' See `vignette("funnel")` for details.
95+
#' See `vignette("prudence")` for details.
9696
#' @param options Arguments to the DuckDB function
9797
#' indicated by `table_function`.
9898
#'
File renamed without changes.

R/relational.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ check_prudence <- function(x, duckplyr_error, call = caller_env()) {
132132
"This operation cannot be carried out by DuckDB, and the input is a frugal duckplyr frame.",
133133
"*" = duckplyr_error_msg,
134134
"i" = 'Use {.code compute(prudence = "lavish")} to materialize to temporary storage and continue with {.pkg duckplyr}.',
135-
"i" = 'See {.run vignette("funnel")} for other options.'
135+
"i" = 'See {.run vignette("prudence")} for other options.'
136136
))
137137
}
138138
}

README.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ Of course, working with Parquet, CSV, or JSON files downloaded locally is possib
223223

224224
- `vignette("large")`: Tools for working with large data
225225

226-
- `vignette("funnel")`: How duckplyr can help protect memory when working with large data
226+
- `vignette("prudence")`: How duckplyr can help protect memory when working with large data
227227

228228
- `vignette("limits")`: Translation of dplyr employed by duckplyr, and current limitations
229229

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ locally is possible as well.
344344
- [`vignette("large")`](https://duckplyr.tidyverse.org/dev/articles/large.html):
345345
Tools for working with large data
346346

347-
- [`vignette("funnel")`](https://duckplyr.tidyverse.org/dev/articles/funnel.html):
347+
- [`vignette("prudence")`](https://duckplyr.tidyverse.org/dev/articles/prudence.html):
348348
How duckplyr can help protect memory when working with large data
349349

350350
- [`vignette("limits")`](https://duckplyr.tidyverse.org/dev/articles/limits.html):

_pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ articles:
1313
navbar: ~
1414
contents:
1515
- large
16-
- funnel
16+
- prudence
1717
- limits
1818
- developers
1919
- telemetry

index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ Of course, working with Parquet, CSV, or JSON files downloaded locally is possib
339339

340340
- `vignette("large")`: Tools for working with large data
341341

342-
- `vignette("funnel")`: How duckplyr can help protect memory when working with large data
342+
- `vignette("prudence")`: How duckplyr can help protect memory when working with large data
343343

344344
- `vignette("limits")`: Translation of dplyr employed by duckplyr, and current limitations
345345

man/duckdb_tibble.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/read_file_duckdb.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)