Skip to content

Commit

Permalink
docs: Render README
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Jan 22, 2025
1 parent 0bc93b3 commit 38efef6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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`.
```

Expand Down
4 changes: 2 additions & 2 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
#> [1mCaused by error in `check_df_for_rel()` at duckplyr/R/relational-duckdb.R:100:3:[22m
#> [1mCaused by error in `check_df_for_rel()` at duckplyr/R/relational-duckdb.R:108:3:[22m
#> ! Attributes are lost during conversion. Affected column: `time_hour`.
```

Expand Down

0 comments on commit 38efef6

Please sign in to comment.