Skip to content

Commit

Permalink
chore(ci): fix internal test reduce bendsql warn
Browse files Browse the repository at this point in the history
  • Loading branch information
TCeason committed Feb 6, 2024
1 parent bab4e09 commit d161224
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions benchmark/clickbench/internal/load.sh
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
#!/bin/bash
# Used to test internal

echo "drop database if exists test" | bendsql -uroot
echo "drop database if exists test2" | bendsql -uroot
echo "create database test" | bendsql -uroot
echo "drop database if exists test" | bendsql
echo "drop database if exists test2" | bendsql
echo "create database test" | bendsql
for((i=1;i<=10000;i++));
do
echo "create table if not exists test.t_$i(id int comment 'tes\t', c2 string comment 'c2comment')" | bendsql -uroot
echo "create table if not exists test.t_$i(id int comment 'tes\t', c2 string comment 'c2comment')" | bendsql
done

echo "create database test2" | bendsql -uroot
echo "create database test2" | bendsql
for((i=1;i<=1000;i++));
do
echo "create table if not exists test2.t_$i(id int comment 'tes\t', c2 string comment 'c2comment')" | bendsql -uroot
echo "create table if not exists test2.t_$i(id int comment 'tes\t', c2 string comment 'c2comment')" | bendsql
done

0 comments on commit d161224

Please sign in to comment.