-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a dummy benchmark for testing the benchmarking script. This will later be used in CI to ensure our benchmarking didn't break.
- Loading branch information
1 parent
519a3c3
commit cf979f5
Showing
3 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
id,val | ||
0,3.14 | ||
1,13.37 | ||
2,42.42 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
CREATE DATABASE dummy; | ||
USE dummy; | ||
|
||
CREATE TABLE Dummy ( | ||
id INT(4) NOT NULL, | ||
val FLOAT | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
description: Dummy benchmark used in CI to ensure benchmarking works | ||
suite: dummy | ||
benchmark: dummy | ||
name: Dummy | ||
readonly: true | ||
data: | ||
'Dummy': | ||
attributes: | ||
'id': 'INT NOT NULL' | ||
'val': 'FLOAT NOT NULL' | ||
file: 'benchmark/dummy/data/dummy.csv' | ||
format: 'csv' | ||
delimiter: ',' | ||
header: 1 | ||
systems: | ||
mutable: | ||
configurations: | ||
'WasmV8, PAX4M': | ||
args: --backend WasmV8 --data-layout PAX4M | ||
pattern: '^Execute query:.*' | ||
cases: | ||
'Dummy': SELECT * FROM Dummy; | ||
PostgreSQL: | ||
cases: | ||
'Dummy': SELECT * FROM "Dummy"; | ||
DuckDB: | ||
cases: | ||
'Dummy': SELECT * FROM "Dummy"; | ||
HyPer: | ||
cases: | ||
'Dummy': SELECT * FROM "Dummy"; |