mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-23 10:08:58 -06:00
[no-release-notes] merge perf bench edits (#5437)
* initial * fixes * fix setup script * dolt config * dolt config
This commit is contained in:
committed by
GitHub
parent
ac650ae716
commit
cf68349fae
7
.github/scripts/merge-perf/setup.sh
vendored
7
.github/scripts/merge-perf/setup.sh
vendored
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user