From 9f498e1b0437cacb15768adcea5c01273d43e462 Mon Sep 17 00:00:00 2001 From: Hai Nghiem Date: Sat, 18 Nov 2023 22:33:13 -0500 Subject: [PATCH] fixed typo --- docs/concepts_collections.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/concepts_collections.md b/docs/concepts_collections.md index c2c40b6..8dc1186 100644 --- a/docs/concepts_collections.md +++ b/docs/concepts_collections.md @@ -15,11 +15,12 @@ Record ( ``` For example: + ```python ("vec1", [0.1, 0.2, 0.3], {"year": 1990}) ``` -Underneath every `vecs` a collection is Postgres table +Underneath every `vecs` collection is a Postgres table ```sql create table ( @@ -28,6 +29,7 @@ create table ( metadata jsonb ) ``` + where rows in the table map 1:1 with vecs vector records. It is safe to select collection tables from outside the vecs client but issuing DDL is not recommended.