From 8b54cae56a8f30cf8524233f03ba9907d6039542 Mon Sep 17 00:00:00 2001 From: Bo Lu Date: Thu, 20 Feb 2025 16:10:23 +1100 Subject: [PATCH] docs(airtable): add supported data types section --- docs/catalog/airtable.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/docs/catalog/airtable.md b/docs/catalog/airtable.md index e02de3028..a3833b819 100644 --- a/docs/catalog/airtable.md +++ b/docs/catalog/airtable.md @@ -130,6 +130,34 @@ options ( This FDW doesn't support query pushdown. +## Supported Data Types + +| Postgres Data Type | Airtable Data Type | +| ------------------ | ------------------ | +| boolean | Checkbox | +| smallint | Number | +| integer | Number | +| bigint | Autonumber | +| bigint | Number | +| real | Number | +| double precision | Number | +| numeric | Number | +| numeric | Currency | +| numeric | Percent | +| text | Single line text | +| text | Long text | +| text | Single select | +| text | Phone number | +| text | Email | +| text | URL | +| date | Date | +| timestamp | Created time | +| timestamp | Last modified time | +| jsonb | Multiple select | +| jsonb | Created by | +| jsonb | Last modified by | +| jsonb | User | + ## Limitations This section describes important limitations and considerations when using this FDW: