From 9586ee76a67e441af3c4981a3aca06bd40422158 Mon Sep 17 00:00:00 2001 From: peasee <98815791+peasee@users.noreply.github.com> Date: Thu, 2 Jan 2025 21:39:15 +1000 Subject: [PATCH] docs: Release Postgres accelerator RC --- spiceaidocs/docs/components/data-accelerators/index.md | 2 +- spiceaidocs/docs/components/data-accelerators/postgres/index.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/spiceaidocs/docs/components/data-accelerators/index.md b/spiceaidocs/docs/components/data-accelerators/index.md index 3688f8225..accc57159 100644 --- a/spiceaidocs/docs/components/data-accelerators/index.md +++ b/spiceaidocs/docs/components/data-accelerators/index.md @@ -32,8 +32,8 @@ Supported Data Accelerators include: | --------------------------------- | ----------------------- | ----------------- | ---------------- | | [`arrow`](./arrow.md) | In-Memory Arrow Records | Release Candidate | `memory` | | [`duckdb`](./duckdb.md) | Embedded DuckDB | Release Candidate | `memory`, `file` | +| [`postgres`](./postgres/index.md) | Attached PostgreSQL | Release Candidate | | | [`sqlite`](./sqlite.md) | Embedded SQLite | Release Candidate | `memory`, `file` | -| [`postgres`](./postgres/index.md) | Attached PostgreSQL | Beta | | ## Data Types diff --git a/spiceaidocs/docs/components/data-accelerators/postgres/index.md b/spiceaidocs/docs/components/data-accelerators/postgres/index.md index 7c1b41cab..a17219805 100644 --- a/spiceaidocs/docs/components/data-accelerators/postgres/index.md +++ b/spiceaidocs/docs/components/data-accelerators/postgres/index.md @@ -77,6 +77,7 @@ datasets: :::warning[Limitations] +- The Postgres accelerator does not support `Map` types. - The Postgres federated queries may result in unexpected result types due to the difference in DataFusion and Postgres size increase rules. Please explicitly specify the expected output type of aggregation functions when writing query involving Postgres table in Spice. For example, rewrite `SUM(int_col)` into `CAST (SUM(int_col) as BIGINT`. :::