Skip to content
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
2 changes: 1 addition & 1 deletion spiceaidocs/docs/components/data-accelerators/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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`.

:::
Expand Down