From d2681c9372adc51063f5dd4cb1707955f9e37993 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Signe=20Kirk=20Br=C3=B8db=C3=A6k?= Date: Thu, 30 Apr 2026 13:35:37 +0200 Subject: [PATCH 1/2] refactor: :truck: rename `chunk_info$columns` cols to be more descriptive which will be a little nicer for the conversion log --- R/convert.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/convert.R b/R/convert.R index f8810d8..96cfa83 100644 --- a/R/convert.R +++ b/R/convert.R @@ -63,8 +63,8 @@ convert <- function( output_path = fs::path(file_path), row_count = nrow(chunk), columns = list(tibble::tibble( - name = colnames(chunk), - type = purrr::map_chr(chunk, class) + column_name = colnames(chunk), + data_type = purrr::map_chr(chunk, class) )) ) ) From 3d4e768d84e321dc06b57c39faf00e1789438dfe Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 30 Apr 2026 11:39:55 +0000 Subject: [PATCH 2/2] =?UTF-8?q?chore:=20=E2=9C=8F=EF=B8=8F=20automatic=20p?= =?UTF-8?q?re-commit=20hook=20fixes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- NEWS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 273d16f..1a72878 100644 --- a/NEWS.md +++ b/NEWS.md @@ -20,7 +20,8 @@ each release. ### Feat -- :sparkles: `list_parquet_files()` and `list_parquet_datasets()` helpers (#272) +- :sparkles: `list_parquet_files()` and `list_parquet_datasets()` + helpers (#272) ## 0.10.3 (2026-04-27)