From 6c4869db1379ac0f32e9e020400de0abd530d836 Mon Sep 17 00:00:00 2001 From: Bo Lu Date: Mon, 20 Nov 2023 13:57:49 +1100 Subject: [PATCH] docs: add extension creation schema --- docs/airtable.md | 2 +- docs/bigquery.md | 2 +- docs/clickhouse.md | 2 +- docs/firebase.md | 2 +- docs/logflare.md | 2 +- docs/s3.md | 2 +- docs/stripe.md | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/airtable.md b/docs/airtable.md index 1bcbbac7..4ee9a645 100644 --- a/docs/airtable.md +++ b/docs/airtable.md @@ -7,7 +7,7 @@ The Airtable Wrapper allows you to read data from your Airtable bases/tables wit Before you get started, make sure the `wrappers` extension is installed on your database: ```sql -create extension if not exists wrappers; +create extension if not exists wrappers with schema extensions; ``` and then create the foreign data wrapper: diff --git a/docs/bigquery.md b/docs/bigquery.md index a7d55f74..0f4b43f3 100644 --- a/docs/bigquery.md +++ b/docs/bigquery.md @@ -21,7 +21,7 @@ The BigQuery Wrapper allows you to read and write data from BigQuery within your Before you get started, make sure the `wrappers` extension is installed on your database: ```sql -create extension if not exists wrappers; +create extension if not exists wrappers with schema extensions; ``` and then create the foreign data wrapper: diff --git a/docs/clickhouse.md b/docs/clickhouse.md index 7dcf5345..6d189152 100644 --- a/docs/clickhouse.md +++ b/docs/clickhouse.md @@ -24,7 +24,7 @@ The ClickHouse Wrapper allows you to read and write data from ClickHouse within Before you get started, make sure the `wrappers` extension is installed on your database: ```sql -create extension if not exists wrappers; +create extension if not exists wrappers with schema extensions; ``` and then create the foreign data wrapper: diff --git a/docs/firebase.md b/docs/firebase.md index 10d21b6a..197f4f02 100644 --- a/docs/firebase.md +++ b/docs/firebase.md @@ -8,7 +8,7 @@ Before you get started, make sure the `wrappers` extension is installed on your database: ```sql -create extension if not exists wrappers; +create extension if not exists wrappers with schema extensions; ``` and then create the foreign data wrapper: diff --git a/docs/logflare.md b/docs/logflare.md index 35404c33..ec7061f3 100644 --- a/docs/logflare.md +++ b/docs/logflare.md @@ -7,7 +7,7 @@ The Logflare Wrapper allows you to read data from Logflare endpoints within your Before you get started, make sure the `wrappers` extension is installed on your database: ```sql -create extension if not exists wrappers; +create extension if not exists wrappers with schema extensions; ``` and then create the foreign data wrapper: diff --git a/docs/s3.md b/docs/s3.md index c041b691..2b1208a3 100644 --- a/docs/s3.md +++ b/docs/s3.md @@ -40,7 +40,7 @@ The S3 Wrapper uses Parquet file data types from [arrow_array::types](https://do Before you get started, make sure the `wrappers` extension is installed on your database: ```sql -create extension if not exists wrappers; +create extension if not exists wrappers with schema extensions; ``` and then create the foreign data wrapper: diff --git a/docs/stripe.md b/docs/stripe.md index 511bbf4f..6f27edd1 100644 --- a/docs/stripe.md +++ b/docs/stripe.md @@ -5,7 +5,7 @@ Before you get started, make sure the `wrappers` extension is installed on your database: ```sql -create extension if not exists wrappers; +create extension if not exists wrappers with schema extensions; ``` and then create the foreign data wrapper: