Show DuckDB settings
show_duckdb_settings.RdShow DuckDB settings
Examples
con <- DBI::dbConnect(duckdb::duckdb())
show_duckdb_settings(con)
#> # A tibble: 130 × 6
#> name value description input_type scope aliases
#> <chr> <chr> <chr> <chr> <chr> <list>
#> 1 access_mode auto… Access mod… VARCHAR GLOB… <chr>
#> 2 allocator_background_threads false Whether to… BOOLEAN GLOB… <chr>
#> 3 allocator_bulk_deallocation_flush… 512.… If a bulk … VARCHAR GLOB… <chr>
#> 4 allocator_flush_threshold 128.… Peak alloc… VARCHAR GLOB… <chr>
#> 5 allow_community_extensions true Allow to l… BOOLEAN GLOB… <chr>
#> 6 allow_extensions_metadata_mismatch false Allow to l… BOOLEAN GLOB… <chr>
#> 7 allow_persistent_secrets true Allow the … BOOLEAN GLOB… <chr>
#> 8 allow_unredacted_secrets false Allow prin… BOOLEAN GLOB… <chr>
#> 9 allow_unsigned_extensions false Allow to l… BOOLEAN GLOB… <chr>
#> 10 allowed_directories [] List of di… VARCHAR[] GLOB… <chr>
#> # ℹ 120 more rows