collect.tbl_az: Collect an Azure-backed lazy tbl

View source: R/tables.R

collect.tbl_azR Documentation

Collect an Azure-backed lazy tbl

Description

dplyr::collect() method for tables created by tbl_delta() and tbl_parquet(). Verifies that the backing DuckDB connection is still open and that the azure extension is loaded before the query is materialised, then defers to the underlying dbplyr method.

Usage

## S3 method for class 'tbl_az'
collect(x, ...)

Arguments

x

A tbl_az produced by tbl_delta() or tbl_parquet().

...

Passed on to the next collect() method.

Value

A tibble::tibble() with the collected rows.

Examples

## Not run: 
# Requires a live Azure account, credentials, and network access.
conn <- az_conn()
tbl_delta(conn, "abfss://container@account/path/sales") |>
  dplyr::collect()

## End(Not run)

quak documentation built on June 9, 2026, 5:09 p.m.