From 40a6dcf6470d3e0be62efec7fd72e42e3ba60b62 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Fri, 6 Dec 2024 07:09:57 -0700 Subject: [PATCH] Update shapes.md (#2111) --- website/docs/guides/shapes.md | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/website/docs/guides/shapes.md b/website/docs/guides/shapes.md index 22efa2f470..f816561fd9 100644 --- a/website/docs/guides/shapes.md +++ b/website/docs/guides/shapes.md @@ -66,7 +66,7 @@ You can use logical operators like `AND` and `OR` to group multiple conditions, - `title='Electric' AND status='todo'` > [!WARNING] Limitations -> Electric needs to be able to evaluate where clauses outside of Postgres, so it only supports a limited set of SQL types and expressions right now. +> Electric needs to be able to evaluate where clauses outside of Postgres, so it supports a subset of SQL types and expressions. > 1. you can use columns of numerical types, `boolean`, `uuid`, `text`, `interval`, date and time types (with the exception of `timetz`) > 1. operators that work on those types: arithmetics, comparisons, boolean operators like `OR`, string operators like `LIKE`, etc. > 1. [Arrays](https://github.com/electric-sql/electric/issues/1767) and [Enums](https://github.com/electric-sql/electric/issues/1709) are not yet supported in where clauses @@ -167,14 +167,6 @@ You can upvote and discuss adding support for include trees here: > > Where necessary, you can use triggers to update these denormalised columns. -### Whole rows - -Shapes currently sync all the columns in a row. - -It's not yet possible to select or ignore/mask columns. You can upvote and discuss adding support for selecting columns here: - -- [Shape support for selecting columns #1676](https://github.com/electric-sql/electric/discussions/1676) - ### Immutable Shapes are currently immutable.