Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

webmacro to 0.0.2 w/ WASM support #233

Merged
merged 6 commits into from
Dec 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions extensions/webmacro/description.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
extension:
name: webmacro
description: Load DuckDB Macros from the web
version: 0.0.1
version: 0.0.2
language: C++
build: cmake
license: MIT
Expand All @@ -10,15 +10,15 @@ extension:

repo:
github: quackscience/duckdb-extension-webmacro
ref: eec600cbbd313453f79c8b271bfe8f576aa851f6
ref: 3f980d8f79df0da8da42e7d5f0bc07ddc74f816d

docs:
hello_world: |
-- Create a DuckDB Scalar or Table macro statement and save it to a gist;

-- Load your remote macro onto your system using the gist url

D SELECT load_macro_from_url('https://gist.github.com/lmangani/518215a68e674ac662537d518799b893/raw/5f305480fdd7468f4ecda3686011bab8e8e711bf/bsky.sql') as res;
D SELECT load_macro_from_url('https://gist.githubusercontent.com/lmangani/518215a68e674ac662537d518799b893/raw/5f305480fdd7468f4ecda3686011bab8e8e711bf/bsky.sql') as res;
┌─────────────────────────────────────────┐
│ res │
│ varchar │
Expand Down
Loading