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

docs: correct wasm file links in docs #295

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
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 docs/paddle.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The Paddle API uses JSON formatted data, please refer to [Paddle docs](https://d

| Version | Wasm Package URL |
| --------| ---------------- |
| 0.1.0 | https://github.com/supabase/wrappers/releases/download/v0.4.0/paddle_fdw.wasm |
| 0.1.0 | https://github.com/supabase/wrappers/releases/download/wasm_paddle_fdw_v0.1.0/paddle_fdw.wasm |

## Preparation

Expand Down Expand Up @@ -70,7 +70,7 @@ We need to provide Postgres with the credentials to access Paddle, and any addit
create server paddle_server
foreign data wrapper wasm_wrapper
options (
fdw_package_url 'https://github.com/supabase/wrappers/releases/download/v0.4.0/paddle_fdw.wasm',
fdw_package_url 'https://github.com/supabase/wrappers/releases/download/wasm_paddle_fdw_v0.1.0/paddle_fdw.wasm',
fdw_package_name 'supabase:paddle-fdw',
fdw_package_version '0.1.0',
api_url 'https://sandbox-api.paddle.com', -- Use https://api.paddle.com for live account
Expand All @@ -84,7 +84,7 @@ We need to provide Postgres with the credentials to access Paddle, and any addit
create server paddle_server
foreign data wrapper wasm_wrapper
options (
fdw_package_url 'https://github.com/supabase/wrappers/releases/download/v0.4.0/paddle_fdw.wasm',
fdw_package_url 'https://github.com/supabase/wrappers/releases/download/wasm_paddle_fdw_v0.1.0/paddle_fdw.wasm',
fdw_package_name 'supabase:paddle-fdw',
fdw_package_version '0.1.0',
api_url 'https://sandbox-api.paddle.com', -- Use https://api.paddle.com for live account
Expand Down
8 changes: 4 additions & 4 deletions docs/snowflake.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The Snowflake Wrapper is a WebAssembly(Wasm) foreign data wrapper which allows y

| Version | Wasm Package URL |
| --------| ---------------- |
| 0.1.0 | https://github.com/supabase/wrappers/releases/download/v0.4.0/snowflake_fdw.wasm |
| 0.1.0 | https://github.com/supabase/wrappers/releases/download/wasm_snowflake_fdw_v0.1.0/snowflake_fdw.wasm |

## Preparation

Expand Down Expand Up @@ -70,7 +70,7 @@ We need to provide Postgres with the credentials to connect to Snowflake, and an
create server snowflake_server
foreign data wrapper wasm_wrapper
options (
fdw_package_url 'https://github.com/supabase/wrappers/releases/download/v0.4.0/snowflake_fdw.wasm',
fdw_package_url 'https://github.com/supabase/wrappers/releases/download/wasm_snowflake_fdw_v0.1.0/snowflake_fdw.wasm',
fdw_package_name 'supabase:snowflake-fdw',
fdw_package_version '0.1.0',
account_identifier 'MYORGANIZATION-MYACCOUNT',
Expand All @@ -86,7 +86,7 @@ We need to provide Postgres with the credentials to connect to Snowflake, and an
create server snowflake_server
foreign data wrapper wasm_wrapper
options (
fdw_package_url 'https://github.com/supabase/wrappers/releases/download/v0.4.0/snowflake_fdw.wasm',
fdw_package_url 'https://github.com/supabase/wrappers/releases/download/wasm_snowflake_fdw_v0.1.0/snowflake_fdw.wasm',
fdw_package_name 'supabase:snowflake-fdw',
fdw_package_version '0.1.0',
account_identifier 'MYORGANIZATION-MYACCOUNT',
Expand Down Expand Up @@ -198,7 +198,7 @@ This example will modify data in a "foreign table" inside your Postgres database
```sql
-- insert new data
insert into snowflake.mytable (id, name, num, dt, ts)
values ('44', 'hello', 456.123, '2024-05-20', '2024-05-20 12:34:56');
values (42, 'hello', 456.123, '2024-05-20', '2024-05-20 12:34:56');

-- update existing data
update snowflake.mytable
Expand Down
Loading