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`. :::