Merge pull request #31834 from ClickHouse/check-bad-file-names

Forbid files that differ only by character case
This commit is contained in:
alexey-milovidov 2021-11-26 03:10:06 +03:00 committed by GitHub
commit 16ff5c0b3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -312,3 +312,5 @@ then
echo "ErrorCodes.cpp contains non-unique error codes"
fi
# Forbid files that differ only by character case
find $ROOT_PATH | sort -f | uniq -i -c | awk '{ if ($1 > 1) print }'