From 61e803a4dc35a3d8e5b25084772d3e25e59f18c8 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Wed, 3 Apr 2024 23:26:25 -0700 Subject: [PATCH] Updated readme [skip ci] --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cac98d6..77444ed 100644 --- a/README.md +++ b/README.md @@ -684,8 +684,8 @@ You can store binary vectors and perform exact nearest neighbor search by Hammin ```tsql CREATE TABLE items (id bigserial PRIMARY KEY, embedding bit(3)); -INSERT INTO items (embedding) VALUES (B'000'), (B'111'); -SELECT * FROM items ORDER BY bit_count(embedding # B'101') LIMIT 5; +INSERT INTO items (embedding) VALUES ('000'), ('111'); +SELECT * FROM items ORDER BY bit_count(embedding # '101') LIMIT 5; ``` Indexing is not currently supported.