From cf68349fae2229a4d2dc5140f7b97fe9d38dfeac Mon Sep 17 00:00:00 2001 From: Maximilian Hoffman Date: Mon, 27 Feb 2023 17:33:05 -0800 Subject: [PATCH] [no-release-notes] merge perf bench edits (#5437) * initial * fixes * fix setup script * dolt config * dolt config --- .github/scripts/merge-perf/setup.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/scripts/merge-perf/setup.sh b/.github/scripts/merge-perf/setup.sh index 3716164024..518bbf26ae 100755 --- a/.github/scripts/merge-perf/setup.sh +++ b/.github/scripts/merge-perf/setup.sh @@ -16,8 +16,11 @@ dolt init dolt sql < $DATA/create.sql -for $t in $(ls "$DATA/table_*"); do - dolt table import --disable-fk-checks -u "table${t}" "$DATA/$t" +i=0 +for t in $(ls $DATA/ | grep "table"); do + echo $t + dolt table import --disable-fk-checks -u "table${i}" "$DATA/$t" + ((i++)) done dolt commit -Am "add tables"