You've already forked pgvecto.rs
mirror of
https://github.com/tensorchord/pgvecto.rs.git
synced 2025-07-30 19:23:05 +03:00
* chore: add crash test Signed-off-by: cutecutecat <junyuchen@tensorchord.ai> * fix Signed-off-by: cutecutecat <junyuchen@tensorchord.ai> --------- Signed-off-by: cutecutecat <junyuchen@tensorchord.ai>
14 lines
257 B
Plaintext
14 lines
257 B
Plaintext
query I
|
|
SELECT EXISTS(SELECT 1 FROM pg_tables WHERE tablename = 't');
|
|
----
|
|
t
|
|
|
|
query I
|
|
SELECT EXISTS(SELECT 1 from pg_indexes where indexname = 'i');
|
|
----
|
|
t
|
|
|
|
query I
|
|
SELECT COUNT(1) FROM (SELECT 1 FROM t ORDER BY val <-> '[0.5,0.5,0.5]' limit 10) t2;
|
|
----
|
|
10 |