From 38efef6fbb12594cd0d436d82356728b17ff6b35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Wed, 22 Jan 2025 17:01:51 +0100 Subject: [PATCH] docs: Render README --- README.md | 4 ++-- index.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index aa9e68d0..d1fa77e4 100644 --- a/README.md +++ b/README.md @@ -171,7 +171,7 @@ materialization of the results on access. ``` r nrow(flights) -#> Error: Materialization is disabled, use collect() or as_tibble() to materialize +#> Error: Materialization is disabled, use collect() or as_tibble() to materialize. ``` Queries on the remote data are executed lazily, and the results are not @@ -370,7 +370,7 @@ out <- duckplyr::as_duckdb_tibble() %>% mutate(inflight_delay = arr_delay - dep_delay) #> Error processing duckplyr query with DuckDB, falling back to dplyr. -#> Caused by error in `check_df_for_rel()` at duckplyr/R/relational-duckdb.R:100:3: +#> Caused by error in `check_df_for_rel()` at duckplyr/R/relational-duckdb.R:108:3: #> ! Attributes are lost during conversion. Affected column: `time_hour`. ``` diff --git a/index.md b/index.md index 513d567e..a5add92e 100644 --- a/index.md +++ b/index.md @@ -171,7 +171,7 @@ Unlike with local data frames, the default is to disallow automatic materializat ``` r nrow(flights) -#> Error: Materialization is disabled, use collect() or as_tibble() to materialize +#> Error: Materialization is disabled, use collect() or as_tibble() to materialize. ``` Queries on the remote data are executed lazily, and the results are not materialized until explicitly requested. @@ -369,7 +369,7 @@ out <- duckplyr::as_duckdb_tibble() %>% mutate(inflight_delay = arr_delay - dep_delay) #> Error processing duckplyr query with DuckDB, falling back to dplyr. -#> Caused by error in `check_df_for_rel()` at duckplyr/R/relational-duckdb.R:100:3: +#> Caused by error in `check_df_for_rel()` at duckplyr/R/relational-duckdb.R:108:3: #> ! Attributes are lost during conversion. Affected column: `time_hour`. ```