Skip to content
This repository was archived by the owner on Aug 16, 2021. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/nancy_run_localhost_simple_dump_with_index.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ output=$(
$nancyRun --workload-custom-sql "file://$srcDir/custom.sql" \
--tmp-path ${srcDir}/tmp \
--db-dump-path "file://$srcDir/test.dump.bz2" \
--target-ddl-do "file://$srcDir/ddl_create_index.sql" \
--target-ddl-undo "file://$srcDir/ddl_drop_index.sql" 2>&1
--target-ddl-do "create index i_speedup on t1 using btree(val);" \
--target-ddl-undo "drop index i_speedup;" 2>&1
)

if [[ $output =~ "Queries duration:" ]]; then
Expand Down