#!/bin/bash

for i in `seq 20`; do
    /usr/local/mariadb/columnstore/mysql/bin/mysql -uroot -h127.0.0.1 tpch1 -e "select sum(l_quantity) from lineitem group by l_quantity;" > /dev/null &
done
