mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
cf3cd099a5
Before HashedDictionary.cpp exceeds 50MiB, now: -rw-r--r-- 1 azat azat 37M Nov 22 17:56 SparseHashedDictionary.cpp.o -rw-r--r-- 1 azat azat 34M Nov 22 17:56 HashedDictionary.cpp.o -rw-r--r-- 1 azat azat 716K Nov 22 17:56 registerHashedDictionary.cpp.o Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
23 lines
552 B
Bash
Executable File
23 lines
552 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Check that there are no new translation units compiled to an object file larger than a certain size.
|
|
|
|
TU_EXCLUDES=(
|
|
CastOverloadResolver
|
|
AggregateFunctionMax
|
|
AggregateFunctionMin
|
|
AggregateFunctionUniq
|
|
FunctionsConversion
|
|
|
|
RangeHashedDictionary
|
|
|
|
Aggregator
|
|
)
|
|
|
|
if find $1 -name '*.o' | xargs wc -c | grep -v total | 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
|