Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ART test and benchmark refactor #8055

Merged
merged 9 commits into from
Jun 27, 2023
Prev Previous commit
Next Next commit
moved data for test file
  • Loading branch information
taniabogatsch committed Jun 22, 2023
commit 191abf17f438021ae81d5bdda63b1768a076ac42
Binary file added data/csv/index_join.csv.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion test/sql/index/art/join/test_art_index_join.test_slow
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ statement ok
CREATE INDEX w_index ON words using art(word);

statement ok
COPY words FROM 'benchmark/micro/index/indexjoin.csv.gz' (DELIMITER ',' , AUTO_DETECT FALSE)
COPY words FROM 'data/csv/index_join.csv.gz' (DELIMITER ',' , AUTO_DETECT FALSE)

query II
SELECT w2.doc as doc2, COUNT(*) AS c FROM words AS w1 JOIN words AS w2 ON (w1.word=w2.word) GROUP BY doc2 ORDER BY c DESC LIMIT 10
Expand Down