This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Check out the DuckDB CLI's UI (invoke with duckdb -ui )! | |
| install ducklake; | |
| load ducklake; | |
| -- Create our DuckLake! | |
| -- We will use a DuckDB file as a catalog and store our data on our local file system | |
| ATTACH 'ducklake:ducklake_catalog_1.ducklake' AS lake (DATA_PATH 'ducklake_data'); | |
| USE lake; | |
| -- Create a table in that DuckLake and load some initial data |