consume_4B_xids.sh
text/x-sh
Filename: consume_4B_xids.sh
Type: text/x-sh
Part: 0
#!/bin/bash
port=8835
for i in {1..10};
do
echo "Running SELECT for i = $i"
./psql -d postgres -p $port -c "SELECT consume_xids(100000000);"
done