Search Shortcut cmd + k | ctrl + k
- Documentation
- Specification
- Introduction
- Data Types
- Queries
- Tables
- Overview
- column
- column_mapping
- name_mapping
- column_tag
- data_file
- delete_file
- file_column_stats
- file_variant_stats
- file_partition_value
- files_scheduled_for_deletion
- inlined_data_tables
- metadata
- partition_column
- partition_info
- schema
- schema_versions
- snapshot
- snapshot_changes
- table
- table_column_stats
- table_stats
- tag
- view
- macro
- macro_impl
- macro_parameters
- sort_info
- sort_expression
- DuckDB Extension
- Introduction
- Usage
- Connecting
- Choosing a Catalog Database
- Choosing Storage
- Snapshots
- Schema Evolution
- Time Travel
- Upserting
- Configuration
- Paths
- Maintenance
- Recommended Maintenance
- Merge Files
- Expire Snapshots
- Cleanup of Files
- Rewrite Files with Deletes
- Checkpoint
- Advanced Features
- Constraints
- Conflict Resolution
- Data Change Feed
- Data Inlining
- Encryption
- Partitioning
- Transactions
- Row Lineage
- Macros
- Views
- Comments
- Sorted Tables
- Metadata
- Migrations
- Guides
- Overview
- Access Control
- Backups and Recovery
- Public DuckLake on Object Storage
- Using a Remote Data Path
- Troubleshooting
- Unsupported Features
- FAQ
Documentation
/ Specification
/ Tables
ducklake_macro_parameters
This table stores the parameters for each macro implementation.
| Column name | Column type |
|---|---|
macro_id |
BIGINT |
impl_id |
BIGINT |
column_id |
BIGINT |
parameter_name |
VARCHAR |
parameter_type |
VARCHAR |
default_value |
VARCHAR |
default_value_type |
VARCHAR |
macro_idrefers to amacro_idfrom theducklake_macrotable.impl_idrefers to animpl_idfrom theducklake_macro_impltable.column_idis the positional index of the parameter within the implementation.parameter_nameis the name of the parameter.parameter_typeis the DuckLake type of the parameter. Set tounknownif the parameter type is not specified.default_valueis the default value of the parameter. Set toNULLif no default is specified.default_value_typeis the DuckLake type of the default value. Set tounknownif no default is specified.