Skip to content

Commit 36127f1

Browse files
committed
Mass rename
Signed-off-by: Adam Gutglick <[email protected]>
1 parent 6ebc186 commit 36127f1

File tree

15 files changed

+57
-57
lines changed

15 files changed

+57
-57
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,8 +399,8 @@ jobs:
399399
if: ${{ matrix.suite == 'tpc-h' }}
400400
# We use i2 to ensure that restarting the duckdb connection succeeds
401401
run: |
402-
cargo run --bin df-bench -- tpch -i2 --formats "vortex,vortex-compact" --options scale-factor=0.1
403-
cargo run --bin ddb-bench -- tpch -i2 --formats "vortex,vortex-compact" --options scale-factor=0.1
402+
cargo run --bin datafusion-bench -- tpch -i2 --formats "vortex,vortex-compact" --options scale-factor=0.1
403+
cargo run --bin duckdb-bench -- tpch -i2 --formats "vortex,vortex-compact" --options scale-factor=0.1
404404
- name: Run FFI Example
405405
if: ${{ matrix.suite == 'ffi' }}
406406
run: |

.github/workflows/sql-benchmarks.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
env:
130130
RUSTFLAGS: "-C target-cpu=native -C force-frame-pointers=yes"
131131
run: |
132-
packages="--bin data-gen --bin df-bench --bin ddb-bench"
132+
packages="--bin data-gen --bin datafusion-bench --bin duckdb-bench"
133133
if [ "${{ matrix.build_lance }}" = "true" ]; then
134134
packages="$packages --bin lance-bench"
135135
fi
@@ -203,9 +203,9 @@ jobs:
203203
204204
touch results.json
205205
206-
# Run df-bench
206+
# Run datafusion-bench
207207
if [ -n "$df_formats" ]; then
208-
target/release_debug/df-bench ${{ matrix.subcommand }} \
208+
target/release_debug/datafusion-bench ${{ matrix.subcommand }} \
209209
-d gh-json \
210210
--formats "$df_formats" \
211211
$opts \
@@ -214,9 +214,9 @@ jobs:
214214
cat df-results.json >> results.json
215215
fi
216216
217-
# Run ddb-bench
217+
# Run duckdb-bench
218218
if [ -n "$ddb_formats" ]; then
219-
target/release_debug/ddb-bench ${{ matrix.subcommand }} \
219+
target/release_debug/duckdb-bench ${{ matrix.subcommand }} \
220220
-d gh-json \
221221
--formats "$ddb_formats" \
222222
$opts \
@@ -259,9 +259,9 @@ jobs:
259259
260260
touch results.json
261261
262-
# Run df-bench with remote storage
262+
# Run datafusion-bench with remote storage
263263
if [ -n "$df_formats" ]; then
264-
target/release_debug/df-bench ${{ matrix.subcommand }} \
264+
target/release_debug/datafusion-bench ${{ matrix.subcommand }} \
265265
-d gh-json \
266266
--formats "$df_formats" \
267267
$opts \
@@ -270,9 +270,9 @@ jobs:
270270
cat df-results.json >> results.json
271271
fi
272272
273-
# Run ddb-bench with remote storage
273+
# Run duckdb-bench with remote storage
274274
if [ -n "$ddb_formats" ]; then
275-
target/release_debug/ddb-bench ${{ matrix.subcommand }} \
275+
target/release_debug/duckdb-bench ${{ matrix.subcommand }} \
276276
-d gh-json \
277277
--formats "$ddb_formats" \
278278
$opts \

Cargo.lock

Lines changed: 39 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bench-orchestrator/bench_orchestrator/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ class Engine(str, Enum):
1919
def binary_name(self) -> str:
2020
"""Return the cargo binary name for this engine."""
2121
return {
22-
Engine.DUCKDB: "ddb-bench",
23-
Engine.DATAFUSION: "df-bench",
22+
Engine.DUCKDB: "duckdb-bench",
23+
Engine.DATAFUSION: "datafusion-bench",
2424
Engine.LANCE: "lance-bench",
2525
}[self]
2626

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "df-bench"
2+
name = "datafusion-bench"
33
description = "Datafusion benchmarks"
44
authors = { workspace = true }
55
categories = { workspace = true }
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "ddb-bench"
2+
name = "duckdb-bench"
33
description = "DuckDB benchmarks tool"
44
authors.workspace = true
55
categories.workspace = true

0 commit comments

Comments
 (0)