From 1134e52762d0fa2b108274deb5ef1a2705e1c6bc Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Tue, 2 Apr 2024 13:33:44 -0700 Subject: [PATCH] Renamed regression tests [skip ci] --- Makefile.win | 2 +- test/expected/{hnsw_hamming.out => hnsw_bit_hamming.out} | 0 test/expected/{hnsw_jaccard.out => hnsw_bit_jaccard.out} | 0 test/expected/{hnsw_cosine.out => hnsw_vector_cosine.out} | 0 test/expected/{hnsw_ip.out => hnsw_vector_ip.out} | 0 test/expected/{hnsw_l2.out => hnsw_vector_l2.out} | 0 test/expected/{ivfflat_cosine.out => ivfflat_vector_cosine.out} | 0 test/expected/{ivfflat_ip.out => ivfflat_vector_ip.out} | 0 test/expected/{ivfflat_l2.out => ivfflat_vector_l2.out} | 0 test/sql/{hnsw_hamming.sql => hnsw_bit_hamming.sql} | 0 test/sql/{hnsw_jaccard.sql => hnsw_bit_jaccard.sql} | 0 test/sql/{hnsw_cosine.sql => hnsw_vector_cosine.sql} | 0 test/sql/{hnsw_ip.sql => hnsw_vector_ip.sql} | 0 test/sql/{hnsw_l2.sql => hnsw_vector_l2.sql} | 0 test/sql/{ivfflat_cosine.sql => ivfflat_vector_cosine.sql} | 0 test/sql/{ivfflat_ip.sql => ivfflat_vector_ip.sql} | 0 test/sql/{ivfflat_l2.sql => ivfflat_vector_l2.sql} | 0 17 files changed, 1 insertion(+), 1 deletion(-) rename test/expected/{hnsw_hamming.out => hnsw_bit_hamming.out} (100%) rename test/expected/{hnsw_jaccard.out => hnsw_bit_jaccard.out} (100%) rename test/expected/{hnsw_cosine.out => hnsw_vector_cosine.out} (100%) rename test/expected/{hnsw_ip.out => hnsw_vector_ip.out} (100%) rename test/expected/{hnsw_l2.out => hnsw_vector_l2.out} (100%) rename test/expected/{ivfflat_cosine.out => ivfflat_vector_cosine.out} (100%) rename test/expected/{ivfflat_ip.out => ivfflat_vector_ip.out} (100%) rename test/expected/{ivfflat_l2.out => ivfflat_vector_l2.out} (100%) rename test/sql/{hnsw_hamming.sql => hnsw_bit_hamming.sql} (100%) rename test/sql/{hnsw_jaccard.sql => hnsw_bit_jaccard.sql} (100%) rename test/sql/{hnsw_cosine.sql => hnsw_vector_cosine.sql} (100%) rename test/sql/{hnsw_ip.sql => hnsw_vector_ip.sql} (100%) rename test/sql/{hnsw_l2.sql => hnsw_vector_l2.sql} (100%) rename test/sql/{ivfflat_cosine.sql => ivfflat_vector_cosine.sql} (100%) rename test/sql/{ivfflat_ip.sql => ivfflat_vector_ip.sql} (100%) rename test/sql/{ivfflat_l2.sql => ivfflat_vector_l2.sql} (100%) diff --git a/Makefile.win b/Makefile.win index ddc2dcb..cb911b9 100644 --- a/Makefile.win +++ b/Makefile.win @@ -4,7 +4,7 @@ EXTVERSION = 0.6.2 OBJS = src\bitvector.obj src\hnsw.obj src\hnswbuild.obj src\hnswinsert.obj src\hnswscan.obj src\hnswutils.obj src\hnswvacuum.obj src\ivfbuild.obj src\ivfflat.obj src\ivfinsert.obj src\ivfkmeans.obj src\ivfscan.obj src\ivfutils.obj src\ivfvacuum.obj src\vector.obj HEADERS = src\vector.h -REGRESS = bit_functions btree cast copy hnsw_cosine hnsw_hamming hnsw_ip hnsw_jaccard hnsw_l2 hnsw_options hnsw_unlogged ivfflat_cosine ivfflat_ip ivfflat_l2 ivfflat_options ivfflat_unlogged vector_functions vector_input +REGRESS = bit_functions btree cast copy hnsw_bit_hamming hnsw_bit_jaccard hnsw_options hnsw_unlogged hnsw_vector_cosine hnsw_vector_ip hnsw_vector_l2 ivfflat_options ivfflat_unlogged ivfflat_vector_cosine ivfflat_vector_ip ivfflat_vector_l2 vector_functions vector_input REGRESS_OPTS = --inputdir=test --load-extension=$(EXTENSION) # For /arch flags diff --git a/test/expected/hnsw_hamming.out b/test/expected/hnsw_bit_hamming.out similarity index 100% rename from test/expected/hnsw_hamming.out rename to test/expected/hnsw_bit_hamming.out diff --git a/test/expected/hnsw_jaccard.out b/test/expected/hnsw_bit_jaccard.out similarity index 100% rename from test/expected/hnsw_jaccard.out rename to test/expected/hnsw_bit_jaccard.out diff --git a/test/expected/hnsw_cosine.out b/test/expected/hnsw_vector_cosine.out similarity index 100% rename from test/expected/hnsw_cosine.out rename to test/expected/hnsw_vector_cosine.out diff --git a/test/expected/hnsw_ip.out b/test/expected/hnsw_vector_ip.out similarity index 100% rename from test/expected/hnsw_ip.out rename to test/expected/hnsw_vector_ip.out diff --git a/test/expected/hnsw_l2.out b/test/expected/hnsw_vector_l2.out similarity index 100% rename from test/expected/hnsw_l2.out rename to test/expected/hnsw_vector_l2.out diff --git a/test/expected/ivfflat_cosine.out b/test/expected/ivfflat_vector_cosine.out similarity index 100% rename from test/expected/ivfflat_cosine.out rename to test/expected/ivfflat_vector_cosine.out diff --git a/test/expected/ivfflat_ip.out b/test/expected/ivfflat_vector_ip.out similarity index 100% rename from test/expected/ivfflat_ip.out rename to test/expected/ivfflat_vector_ip.out diff --git a/test/expected/ivfflat_l2.out b/test/expected/ivfflat_vector_l2.out similarity index 100% rename from test/expected/ivfflat_l2.out rename to test/expected/ivfflat_vector_l2.out diff --git a/test/sql/hnsw_hamming.sql b/test/sql/hnsw_bit_hamming.sql similarity index 100% rename from test/sql/hnsw_hamming.sql rename to test/sql/hnsw_bit_hamming.sql diff --git a/test/sql/hnsw_jaccard.sql b/test/sql/hnsw_bit_jaccard.sql similarity index 100% rename from test/sql/hnsw_jaccard.sql rename to test/sql/hnsw_bit_jaccard.sql diff --git a/test/sql/hnsw_cosine.sql b/test/sql/hnsw_vector_cosine.sql similarity index 100% rename from test/sql/hnsw_cosine.sql rename to test/sql/hnsw_vector_cosine.sql diff --git a/test/sql/hnsw_ip.sql b/test/sql/hnsw_vector_ip.sql similarity index 100% rename from test/sql/hnsw_ip.sql rename to test/sql/hnsw_vector_ip.sql diff --git a/test/sql/hnsw_l2.sql b/test/sql/hnsw_vector_l2.sql similarity index 100% rename from test/sql/hnsw_l2.sql rename to test/sql/hnsw_vector_l2.sql diff --git a/test/sql/ivfflat_cosine.sql b/test/sql/ivfflat_vector_cosine.sql similarity index 100% rename from test/sql/ivfflat_cosine.sql rename to test/sql/ivfflat_vector_cosine.sql diff --git a/test/sql/ivfflat_ip.sql b/test/sql/ivfflat_vector_ip.sql similarity index 100% rename from test/sql/ivfflat_ip.sql rename to test/sql/ivfflat_vector_ip.sql diff --git a/test/sql/ivfflat_l2.sql b/test/sql/ivfflat_vector_l2.sql similarity index 100% rename from test/sql/ivfflat_l2.sql rename to test/sql/ivfflat_vector_l2.sql