mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
2a29046d03
This reverts commit 7261f924bb
.
18 lines
502 B
Bash
Executable File
18 lines
502 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export LC_ALL=C # The "total" should be printed without localization
|
|
|
|
# Check that there are no new translation units compiled to an object file larger than a certain size.
|
|
|
|
TU_EXCLUDES=(
|
|
AggregateFunctionUniq
|
|
Aggregator
|
|
)
|
|
|
|
if find $1 -name '*.o' | xargs wc -c | grep --regexp='\.o$' | sort -rn | awk '{ if ($1 > 50000000) print }' \
|
|
| grep -v -f <(printf "%s\n" "${TU_EXCLUDES[@]}")
|
|
then
|
|
echo "^ It's not allowed to have so large translation units."
|
|
exit 1
|
|
fi
|