mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 04:52:10 +00:00
8 lines
154 B
Bash
Executable File
8 lines
154 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cat queries.sql | while read query; do
|
|
sync
|
|
echo 3 | sudo tee /proc/sys/vm/drop_caches >/dev/null
|
|
./query.py <<< "$(query)"
|
|
done
|