mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 05:03:20 +00:00
26 lines
485 B
Plaintext
26 lines
485 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
CUR_DIR=`dirname $0`
|
||
|
CUR_DIR=`readlink -f $CUR_DIR`
|
||
|
CUR_DIR="${CUR_DIR}/"
|
||
|
|
||
|
RESULT_FILE=${RESULT_FILE:=${CUR_DIR}check-include.log}
|
||
|
finish() {
|
||
|
echo include check failed:
|
||
|
cat $RESULT_FILE
|
||
|
}
|
||
|
trap finish 0 1 3 6 15
|
||
|
|
||
|
sh ${CUR_DIR}check-include > $RESULT_FILE 2>&1
|
||
|
|
||
|
echo Results:
|
||
|
echo Top by memory:
|
||
|
cat $RESULT_FILE | sort -rk4 | head -n20
|
||
|
|
||
|
echo Top by time:
|
||
|
cat $RESULT_FILE | sort -rk3 | head -n20
|
||
|
|
||
|
echo Top by includes:
|
||
|
cat $RESULT_FILE | sort -rk2 | head -n20
|