Updated readme [skip ci]

This commit is contained in:
Andrew Kane
2024-04-03 23:26:25 -07:00
parent 2e5cbf611a
commit 61e803a4dc

View File

@@ -684,8 +684,8 @@ You can store binary vectors and perform exact nearest neighbor search by Hammin
```tsql ```tsql
CREATE TABLE items (id bigserial PRIMARY KEY, embedding bit(3)); CREATE TABLE items (id bigserial PRIMARY KEY, embedding bit(3));
INSERT INTO items (embedding) VALUES (B'000'), (B'111'); INSERT INTO items (embedding) VALUES ('000'), ('111');
SELECT * FROM items ORDER BY bit_count(embedding # B'101') LIMIT 5; SELECT * FROM items ORDER BY bit_count(embedding # '101') LIMIT 5;
``` ```
Indexing is not currently supported. Indexing is not currently supported.