ClickHouse/src/Functions
Azat Khuzhin bedf208cbd Use fmt::runtime() for LOG_* for non constexpr
Here is oneliner:

    $ gg 'LOG_\(DEBUG\|TRACE\|INFO\|TEST\|WARNING\|ERROR\|FATAL\)([^,]*, [a-zA-Z]' -- :*.cpp :*.h | cut -d: -f1 | sort -u | xargs -r sed -E -i 's#(LOG_[A-Z]*)\(([^,]*), ([A-Za-z][^,)]*)#\1(\2, fmt::runtime(\3)#'

Note, that I tried to do this with coccinelle (tool for semantic
patchin), but it cannot parse C++:

    $ cat fmt.cocci
    @@
    expression log;
    expression var;
    @@

    -LOG_DEBUG(log, var)
    +LOG_DEBUG(log, fmt::runtime(var))

I've also tried to use some macros/templates magic to do this implicitly
in logger_useful.h, but I failed to do so, and apparently it is not
possible for now.

Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>

v2: manual fixes
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2022-02-01 14:30:03 +03:00
..
array Update sort to pdqsort 2022-01-30 19:49:48 +00:00
divide contrib/libdivide: add ALIAS library 2022-01-21 10:11:23 +03:00
examples move to examples everywhere 2021-04-27 01:51:42 +03:00
GatherUtils Fix UBSan 2022-01-05 22:15:22 +03:00
JSONPath Reduce dependencies on ASTIdentifier.h 2021-11-26 16:49:40 +01:00
tests Delete test 2021-10-12 10:19:21 +00:00
URL Fix build w/o hyperscan 2022-01-20 10:02:02 +03:00
abs.cpp Making Monotonicity an aggregate to use with designated initializers 2021-09-29 18:01:26 +02:00
acos.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
acosh.cpp clang-format 2020-11-04 12:30:40 +01:00
addDays.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
addHours.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
addMinutes.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
addMonths.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
addQuarters.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
addressToLine.cpp Small refactoring of WriteBiffer-s 2021-11-11 02:11:18 +03:00
addressToSymbol.cpp Move access-rights' source files needed for parser to a separate target. 2021-11-01 19:13:49 +03:00
addSeconds.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
addWeeks.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
addYears.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
aes_decrypt_mysql.cpp Remove cruft 2021-10-28 02:10:39 +03:00
aes_encrypt_mysql.cpp Remove cruft 2021-10-28 02:10:39 +03:00
appendTrailingCharIfAbsent.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
asin.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
asinh.cpp clang-format 2020-11-04 12:30:40 +01:00
assumeNotNull.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
atan2.cpp clang-format 2020-11-04 12:30:40 +01:00
atan.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
atanh.cpp clang-format 2020-11-04 12:30:40 +01:00
bar.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
base64Decode.cpp Fix base64Encode returning corrupted data 2021-11-25 15:24:11 +01:00
base64Encode.cpp Merge pull request #31797 from aiven/kmichel-fix-base64encode-too-fast 2021-12-16 01:35:22 +03:00
bitAnd.cpp Bit shift operations for FixedString and String data types. 2021-08-30 15:48:59 +08:00
bitBoolMaskAnd.cpp Bit shift operations for FixedString and String data types. 2021-08-30 15:48:59 +08:00
bitBoolMaskOr.cpp Bit shift operations for FixedString and String data types. 2021-08-30 15:48:59 +08:00
bitCount.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
bitHammingDistance.cpp rewrite bitHammingDistance with FunctionBinaryArithmetic 2022-01-19 09:07:05 +00:00
bitNot.cpp Bit shift operations for FixedString and String data types. 2021-08-30 15:48:59 +08:00
bitOr.cpp Bit shift operations for FixedString and String data types. 2021-08-30 15:48:59 +08:00
bitRotateLeft.cpp Bit shift operations for FixedString and String data types. 2021-08-30 15:48:59 +08:00
bitRotateRight.cpp Bit shift operations for FixedString and String data types. 2021-08-30 15:48:59 +08:00
bitShiftLeft.cpp add bitShiftLeft for FixedString and String integer. 2021-09-07 01:20:12 +08:00
bitShiftRight.cpp add bitShiftLeft for FixedString and String integer. 2021-09-07 01:20:12 +08:00
bitSlice.cpp fix undefined behavior 2022-01-12 19:13:08 +08:00
bitSwapLastTwo.cpp Bit shift operations for FixedString and String data types. 2021-08-30 15:48:59 +08:00
bitTest.cpp Bit shift operations for FixedString and String data types. 2021-08-30 15:48:59 +08:00
bitTestAll.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
bitTestAny.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
bitWrapperFunc.cpp Merge branch 'master' into issues_27763 2021-09-13 20:33:29 +03:00
bitXor.cpp Bit shift operations for FixedString and String data types. 2021-08-30 15:48:59 +08:00
blockNumber.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
blockSerializedSize.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
blockSize.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
byteSize.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
caseWithExpression.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
castOrDefault.cpp Function accurateCastOrDefault remove separate branch 2021-12-03 13:25:55 +03:00
CastOverloadResolver.cpp Move templates from FunctionsConvertion 2021-08-11 19:09:51 +00:00
CastOverloadResolver.h Fix checks 2021-08-12 06:34:57 +00:00
castTypeToEither.h Fix strange code in TypeList 2021-11-25 23:55:02 +03:00
cbrt.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
CMakeLists.txt Merge branch 'master' into classification 2022-01-25 10:22:47 +00:00
coalesce.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
concat.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
config_functions.h.in Merge branch 'master' into classification 2022-01-25 10:22:47 +00:00
configure_config.cmake Fix build w/o hyperscan 2022-01-20 10:02:02 +03:00
connectionId.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
convertCharset.cpp Remove cruft 2021-10-28 02:10:39 +03:00
cos.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
cosh.cpp clang-format 2020-11-04 12:30:40 +01:00
countDigits.cpp Replacing IsDecimalNumber 2021-09-11 00:40:18 +02:00
countMatches.cpp Fix and optimize countMatches()/countMatchesCaseInsensitive() 2020-12-01 22:25:26 +03:00
countMatches.h Try to simplify code 2021-08-09 18:01:08 +03:00
countSubstrings.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
countSubstringsCaseInsensitive.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
countSubstringsCaseInsensitiveUTF8.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
CountSubstringsImpl.h Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
CRC.cpp Updated additional cases 2021-12-20 15:55:07 +03:00
currentDatabase.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
currentProfiles.cpp Rename AccessControlManager -> AccessControl. 2021-11-02 14:06:20 +03:00
currentRoles.cpp Update sort to pdqsort 2022-01-30 19:49:48 +00:00
currentUser.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
CustomWeekTransforms.h Saturate date/datetime to zero 2022-01-03 02:07:08 +03:00
date_trunc.cpp Making Monotonicity an aggregate to use with designated initializers 2021-09-29 18:01:26 +02:00
dateDiff.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
dateName.cpp Remove DecimalPaddedPODArray 2022-01-27 10:07:53 +00:00
DateOrDateTimeFunctionsConvertion.cpp Move templates from FunctionsConvertion 2021-08-11 19:09:51 +00:00
DateTimeTransforms.h Saturate date/datetime to zero 2022-01-03 02:07:08 +03:00
decodeXMLComponent.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
decrypt.cpp Remove cruft 2021-10-28 02:10:39 +03:00
defaultValueOfArgumentType.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
defaultValueOfTypeName.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
degrees.cpp FunctionMathUnary remove macro usage 2022-01-22 18:44:36 +00:00
demange.cpp Move access-rights' source files needed for parser to a separate target. 2021-11-01 19:13:49 +03:00
divide.cpp Bit shift operations for FixedString and String data types. 2021-08-30 15:48:59 +08:00
DivisionUtils.h Remove cruft 2021-10-28 02:10:39 +03:00
DummyJSONParser.h Rename "common" to "base" 2021-10-02 10:13:14 +03:00
dumpColumnStructure.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
empty.cpp Some fixes, more tests 2021-08-09 17:54:14 +03:00
EmptyImpl.h fix function 'empty' with uuid type 2021-11-26 17:39:29 +03:00
encodeXMLComponent.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
encrypt.cpp Remove cruft 2021-10-28 02:10:39 +03:00
endsWith.cpp Mark all Functions as sutable or not for executing as short circuit arguments 2021-08-09 17:50:09 +03:00
equals.cpp Part 1. 2020-10-17 17:23:37 +03:00
erf.cpp FunctionMathUnary remove macro usage 2022-01-22 18:44:36 +00:00
erfc.cpp FunctionMathUnary remove macro usage 2022-01-22 18:44:36 +00:00
errorCodeToName.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
evalMLMethod.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
exp2.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
exp10.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
exp.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
extract.cpp Revert "Make extract case insensitive" 2021-01-22 02:36:37 +03:00
extractAllGroups.h Fixed tests 2021-09-30 14:35:24 +03:00
extractAllGroupsHorizontal.cpp
extractAllGroupsVertical.cpp Normalize function names 2021-02-18 20:20:28 +08:00
extractGroups.cpp Fixed tests 2021-09-30 14:35:24 +03:00
ExtractString.h Minor fixes for min/sim hash 2020-12-29 13:16:43 +03:00
extractTextFromHTML.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
extractTimeZoneFromFunctionArguments.cpp Move code around to avoid dlsym on Musl 2021-12-24 12:25:27 +03:00
extractTimeZoneFromFunctionArguments.h Function accurateCastOrDefault updated implementation 2021-09-29 17:52:08 +03:00
filesystem.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
finalizeAggregation.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
formatDateTime.cpp Remove DecimalPaddedPODArray 2022-01-27 10:07:53 +00:00
formatReadable.h Try to simplify code 2021-08-09 18:01:08 +03:00
formatReadableQuantity.cpp Moved functions to separate files; remove copy-paste 2020-10-10 21:23:54 +03:00
formatReadableSize.cpp Moved functions to separate files; remove copy-paste 2020-10-10 21:23:54 +03:00
formatReadableTimeDelta.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
formatRow.cpp Small refactoring in formats 2021-11-03 20:07:05 +03:00
formatString.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
formatString.h Updated additional cases 2021-12-20 15:55:07 +03:00
fromModifiedJulianDay.cpp Making Monotonicity an aggregate to use with designated initializers 2021-09-29 18:01:26 +02:00
fromUnixTimestamp64Micro.cpp Rename ContextConstPtr to ContextPtr. 2021-06-01 15:20:52 +03:00
fromUnixTimestamp64Milli.cpp Rename ContextConstPtr to ContextPtr. 2021-06-01 15:20:52 +03:00
fromUnixTimestamp64Nano.cpp Rename ContextConstPtr to ContextPtr. 2021-06-01 15:20:52 +03:00
FunctionBase64Conversion.h FunctionBase64Conversion warning fix 2022-01-21 11:26:39 +00:00
FunctionBinaryArithmetic.h rewrite bitHammingDistance with FunctionBinaryArithmetic 2022-01-19 09:07:05 +00:00
FunctionBitTestMany.h Rename "common" to "base" 2021-10-02 10:13:14 +03:00
FunctionChar.cpp Refactor code 2021-08-10 14:31:15 +03:00
FunctionConstantBase.h Cosmetic refactoring of server constants. 2021-10-09 11:47:27 +08:00
FunctionCustomWeekToSomething.h Making Monotonicity an aggregate to use with designated initializers 2021-09-29 18:01:26 +02:00
FunctionDateOrDateTimeAddInterval.h Saturate date/datetime to zero 2022-01-03 02:07:08 +03:00
FunctionDateOrDateTimeToSomething.h Making Monotonicity an aggregate to use with designated initializers 2021-09-29 18:01:26 +02:00
FunctionFactory.cpp Fix issue: clickhouse-format --obfuscate cannot process queries with embedded dictionaries 2021-10-03 00:46:51 +03:00
FunctionFactory.h Fix issue: clickhouse-format --obfuscate cannot process queries with embedded dictionaries 2021-10-03 00:46:51 +03:00
FunctionFile.cpp Fix surprisingly bad code in function "file" 2021-12-13 07:57:54 +03:00
FunctionFQDN.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
FunctionHelpers.cpp Fixed tests 2021-09-30 14:35:24 +03:00
FunctionHelpers.h Fixed tests 2021-09-30 14:35:24 +03:00
FunctionIfBase.h Remove cruft 2021-10-28 02:10:39 +03:00
FunctionJoinGet.cpp Use RWLock in StorageJoin to avoid deadlocks 2021-09-29 19:30:07 +02:00
FunctionJoinGet.h Use RWLock in StorageJoin to avoid deadlocks 2021-09-29 19:30:07 +02:00
FunctionMathBinaryFloat64.h Remove cruft 2021-10-28 02:10:39 +03:00
FunctionMathUnary.h Remove DecimalPaddedPODArray 2022-01-27 10:07:53 +00:00
FunctionNumericPredicate.h Rename "common" to "base" 2021-10-02 10:13:14 +03:00
FunctionsAES.cpp Empty string optimization for encryption 2020-10-14 16:33:07 +03:00
FunctionsAES.h Fix error 2021-11-28 07:18:00 +03:00
FunctionsBinaryRepr.cpp Fix style checking 2022-01-19 10:13:12 +08:00
FunctionsBitmap.cpp add bitmapSubsetOffsetLimit function 2021-08-06 00:44:07 +08:00
FunctionsBitmap.h fix build and style error 2021-09-15 18:03:41 +08:00
FunctionsBitToArray.cpp Refactor code 2021-08-10 14:31:15 +03:00
FunctionsCharsetClassification.cpp Fix 2022-01-17 10:01:06 +00:00
FunctionsCodingIP.cpp Manipulate with -Wreserved-identifier only if HAS_RESERVED_IDENTIFIER has been detected 2021-10-03 17:42:36 +04:00
FunctionsCodingUUID.cpp Refactor code 2021-08-10 14:31:15 +03:00
FunctionsComparison.h fix and add more tests 2022-01-13 03:25:01 +00:00
FunctionsConsistentHashing.h Simplifying exception messages 2021-09-11 00:40:18 +02:00
FunctionsConversion.cpp FunctionsConversion fix typo 2022-01-20 16:21:34 +00:00
FunctionsConversion.h Fixed tests 2022-01-27 16:02:31 +00:00
FunctionsEmbeddedDictionaries.cpp
FunctionsEmbeddedDictionaries.h Remove cruft 2021-10-28 02:10:39 +03:00
FunctionsExternalDictionaries.cpp Merge pull request #22413 from kitaisreal/added-function-dict-get-or-null 2021-04-02 11:39:01 +03:00
FunctionsExternalDictionaries.h Fixed tests 2022-01-16 11:45:36 +00:00
FunctionsHashing.cpp Remove USE_XXHASH (reduntant) 2022-01-20 10:02:02 +03:00
FunctionsHashing.h Remove USE_XXHASH (reduntant) 2022-01-20 10:02:02 +03:00
FunctionsJSON.cpp Fix surprisingly bad code in function "file" 2021-12-13 07:57:54 +03:00
FunctionsLanguageClassification.cpp Small fix 2022-01-19 10:31:04 +00:00
FunctionsLogical.cpp Make result Bool only if arguments contain Bool 2022-01-20 14:16:11 +03:00
FunctionsLogical.h Updated additional cases 2021-12-20 15:55:07 +03:00
FunctionsMiscellaneous.h Fix PVS-Studio 2021-10-11 14:28:46 +03:00
FunctionsMultiStringFuzzySearch.h Rename "common" to "base" 2021-10-02 10:13:14 +03:00
FunctionsMultiStringPosition.h Rename "common" to "base" 2021-10-02 10:13:14 +03:00
FunctionsMultiStringSearch.h Rename "common" to "base" 2021-10-02 10:13:14 +03:00
FunctionSnowflake.h Rename "common" to "base" 2021-10-02 10:13:14 +03:00
FunctionsProgrammingClassification.cpp Merge branch 'master' into classification 2022-01-18 21:41:03 +00:00
FunctionSQLJSON.cpp Make 1st arg always be const, fix style 2021-06-06 14:13:13 +03:00
FunctionSQLJSON.h Fix 2021-11-18 08:46:31 +00:00
FunctionsRandom.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
FunctionsRandom.h Try to simplify code 2021-08-09 18:01:08 +03:00
FunctionsRound.cpp Normalize function names 2021-02-18 20:20:28 +08:00
FunctionsRound.h Update sort to pdqsort 2022-01-30 19:49:48 +00:00
FunctionsStringArray.cpp support any serializable column 2021-10-28 23:17:45 +03:00
FunctionsStringArray.h Fix build 2021-12-15 20:40:36 +03:00
FunctionsStringHash.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
FunctionsStringHash.h Try to simplify code 2021-08-09 18:01:08 +03:00
FunctionsStringSearch.h Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
FunctionsStringSearchToString.h Rename "common" to "base" 2021-10-02 10:13:14 +03:00
FunctionsStringSimilarity.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
FunctionsStringSimilarity.h Try to simplify code 2021-08-09 18:01:08 +03:00
FunctionStartsEndsWith.h Try to simplify code 2021-08-09 18:01:08 +03:00
FunctionsTextClassification.h Refactor 2022-01-12 16:49:21 +00:00
FunctionsTimeWindow.cpp rename window function name 2021-12-10 09:59:50 +00:00
FunctionsTimeWindow.h Merge with master 2022-01-03 02:07:08 +03:00
FunctionsTonalityClassification.cpp Fix 2022-01-17 10:01:06 +00:00
FunctionStringOrArrayToT.h Try to simplify code 2021-08-09 18:01:08 +03:00
FunctionStringReplace.h Try to simplify code 2021-08-09 18:01:08 +03:00
FunctionStringToString.h Try to simplify code 2021-08-09 18:01:08 +03:00
FunctionsVisitParam.h Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
FunctionUnaryArithmetic.h Remove cruft 2021-10-28 02:10:39 +03:00
FunctionUnixTimestamp64.h moved common code out of template 2022-01-26 20:15:34 +03:00
fuzzBits.cpp fix fuzzbits with multiply same fixedstring 2021-12-14 23:26:18 +08:00
gcd.cpp Upd upstream 2021-05-28 00:21:02 +03:00
GCDLCMImpl.h Remove cruft 2021-10-28 02:10:39 +03:00
generateUUIDv4.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
GeoHash.cpp Fix UBSan report in geoHashesInBox 2021-02-02 06:37:24 +03:00
GeoHash.h Rename "common" to "base" 2021-10-02 10:13:14 +03:00
geohashDecode.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
geohashEncode.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
geohashesInBox.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
geometryConverters.h Rename "common" to "base" 2021-10-02 10:13:14 +03:00
geoToH3.cpp Loops remove postfix increment 2021-12-20 13:32:13 +03:00
geoToS2.cpp use prefix increment for rows 2021-12-19 20:32:52 -08:00
getFuzzerData.cpp Better 2021-12-06 18:27:06 +00:00
getFuzzerData.h One more style related commit 2021-12-07 11:29:46 +00:00
getMacro.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
getScalar.cpp Refactor code 2021-08-10 14:31:15 +03:00
getServerPort.cpp getPort function 2021-08-21 20:33:36 +08:00
getSetting.cpp Merge pull request #27982 from vitlibar/function-get-setting-get-rid-of-mutable 2021-08-22 20:10:38 +03:00
getSizeOfEnumType.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
globalVariable.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
greatCircleDistance.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
greater.cpp Part 1. 2020-10-17 17:23:37 +03:00
greaterOrEquals.cpp Part 1. 2020-10-17 17:23:37 +03:00
greatest.cpp Bit shift operations for FixedString and String data types. 2021-08-30 15:48:59 +08:00
GregorianDate.h Rename "common" to "base" 2021-10-02 10:13:14 +03:00
h3CellAreaM2.cpp Merge pull request #33512 from kitaisreal/h3-funcs-bad-arguments-possible-crash-fix 2022-01-11 12:31:57 +03:00
h3CellAreaRads2.cpp Merge pull request #33512 from kitaisreal/h3-funcs-bad-arguments-possible-crash-fix 2022-01-11 12:31:57 +03:00
h3EdgeAngle.cpp fixes to exception message 2022-01-22 23:05:06 -08:00
h3EdgeLengthKm.cpp better fix for build failure 2022-01-21 12:36:12 -08:00
h3EdgeLengthM.cpp better fix for build failure 2022-01-21 12:36:12 -08:00
h3ExactEdgeLengthKm.cpp add h3ExactEdgeLengthKm func 2022-01-13 23:40:07 -08:00
h3ExactEdgeLengthM.cpp add h3ExactEdgeLengthM func 2022-01-13 21:05:54 -08:00
h3ExactEdgeLengthRads.cpp add h3ExactEdgeLengthRads func 2022-01-13 23:42:56 -08:00
h3GetBaseCell.cpp h3 explicitly checkAndGetColumn 2022-01-22 23:02:14 -08:00
h3GetFaces.cpp add check for h3 empty column arguments 2022-01-18 22:52:13 -08:00
h3GetResolution.cpp h3 remaining funcs checkAndGetColumn 2022-01-22 23:02:14 -08:00
h3HexAreaKm2.cpp better fix for build failure 2022-01-21 12:36:12 -08:00
h3HexAreaM2.cpp better fix for build failure 2022-01-21 12:36:12 -08:00
h3IndexesAreNeighbors.cpp fixes to exception message 2022-01-22 23:05:06 -08:00
h3IsPentagon.cpp add check for h3 empty column arguments 2022-01-18 22:52:13 -08:00
h3IsResClassIII.cpp fix style check 2022-01-18 22:52:13 -08:00
h3IsValid.cpp h3 remaining funcs checkAndGetColumn 2022-01-22 23:02:14 -08:00
h3kRing.cpp fix tests 2022-01-23 06:29:57 -08:00
h3NumHexagons.cpp better fix for build failure 2022-01-21 12:36:12 -08:00
h3ToCenterChild.cpp add h3ToCenterChild function (#33313) 2022-01-19 16:04:23 +03:00
h3ToChildren.cpp h3 remaining funcs checkAndGetColumn 2022-01-22 23:02:14 -08:00
h3toGeo.cpp h3 explicitly checkAndGetColumn 2022-01-22 23:02:14 -08:00
h3ToGeoBoundary.cpp h3 explicitly checkAndGetColumn 2022-01-22 23:02:14 -08:00
h3ToParent.cpp fixes to exception message 2022-01-22 23:05:06 -08:00
h3ToString.cpp fix build 2022-01-22 23:48:53 -08:00
hasColumnInTable.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
hasThreadFuzzer.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
hasToken.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
hasTokenCaseInsensitive.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
HasTokenImpl.h Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
hyperscanRegexpChecker.cpp Add settings to check hyperscan regexp length. 2021-08-07 13:07:41 +08:00
hyperscanRegexpChecker.h Rename "common" to "base" 2021-10-02 10:13:14 +03:00
hypot.cpp clang-format 2020-11-04 12:30:40 +01:00
identity.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
if.cpp Short circuit evaluation function throwIf support 2021-12-20 14:49:05 +03:00
ifNotFinite.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
ifNull.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
IFunction.cpp fix functions with sparse arguments 2021-12-24 19:39:50 +03:00
IFunction.h Merge remote-tracking branch 'upstream/master' into HEAD 2021-11-01 16:55:53 +03:00
IFunctionAdaptors.h Merge remote-tracking branch 'upstream/master' into HEAD 2021-08-20 01:45:38 +03:00
ignore.cpp Merge remote-tracking branch 'upstream/master' into HEAD 2021-08-20 01:45:38 +03:00
ilike.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
in.cpp Merge pull request #26639 from ClickHouse/fix-bad-cast 2021-08-19 11:17:26 +03:00
indexHint.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
initializeAggregation.cpp support nullable arguments in function initializeAggregation 2021-10-14 15:09:06 +03:00
initialQueryID.cpp Refactor code 2021-08-10 14:31:15 +03:00
intDiv.cpp Fix tests 2021-10-07 00:19:37 +03:00
intDivOrZero.cpp Bit shift operations for FixedString and String data types. 2021-08-30 15:48:59 +08:00
intExp2.cpp Making Monotonicity an aggregate to use with designated initializers 2021-09-29 18:01:26 +02:00
intExp10.cpp Making Monotonicity an aggregate to use with designated initializers 2021-09-29 18:01:26 +02:00
isConstant.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
isDecimalOverflow.cpp Replacing IsDecimalNumber 2021-09-11 00:40:18 +02:00
isFinite.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
isInfinite.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
isIPAddressContainedIn.cpp Updated additional cases 2021-12-20 15:55:07 +03:00
isNaN.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
isNotNull.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
isNull.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
IsOperation.h rewrite bitHammingDistance with FunctionBinaryArithmetic 2022-01-19 09:07:05 +00:00
isValidUTF8.cpp Move isValidUTF8Naive from Functions to Common 2021-08-23 09:22:15 +03:00
isZeroOrNull.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
ITupleFunction.h Cosine null fix 2021-09-23 15:54:00 +03:00
jumpConsistentHash.cpp add IsOperation helper 2020-09-08 03:59:13 +03:00
lcm.cpp Upd upstream 2021-05-28 00:21:02 +03:00
least.cpp Bit shift operations for FixedString and String data types. 2021-08-30 15:48:59 +08:00
LeastGreatestGeneric.h Rename "common" to "base" 2021-10-02 10:13:14 +03:00
left.cpp Make "left" and "right" real functions 2022-01-05 05:32:40 +03:00
LeftRight.h Fix style 2022-01-05 07:12:20 +03:00
lemmatize.cpp Remove cruft 2021-10-28 02:10:39 +03:00
lengthUTF8.cpp fix style 2021-07-05 00:01:49 +08:00
less.cpp Part 1. 2020-10-17 17:23:37 +03:00
lessOrEquals.cpp Part 1. 2020-10-17 17:23:37 +03:00
lgamma.cpp FunctionMathUnary remove macro usage 2022-01-22 18:44:36 +00:00
like.cpp optimized code 2021-10-27 19:53:53 +08:00
like.h optimized code 2021-10-27 19:53:53 +08:00
likePatternToRegexp.h Rename "common" to "base" 2021-10-02 10:13:14 +03:00
log1p.cpp clang-format 2020-11-04 12:30:40 +01:00
log2.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
log10.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
log.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
logTrace.cpp Use fmt::runtime() for LOG_* for non constexpr 2022-02-01 14:30:03 +03:00
lowCardinalityIndices.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
lowCardinalityKeys.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
lower.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
LowerUpperImpl.h Check for #pragma once in headers 2020-10-10 21:37:02 +03:00
LowerUpperUTF8Impl.h Remove tons of garbage 2021-01-31 05:36:52 +03:00
lowerUTF8.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
map.cpp Updated additional cases 2021-12-20 15:55:07 +03:00
match.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
MatchImpl.h Remove unbundled re2 support 2022-01-20 10:00:49 +03:00
materialize.cpp Remove Converting transform and step. 2020-11-17 22:43:26 +03:00
materialize.h Try to simplify code 2021-08-09 18:01:08 +03:00
mathConstants.cpp improvements 2021-09-16 00:17:54 +03:00
max2.cpp updates to min2 and max2 funcs 2022-01-20 15:39:05 -08:00
min2.cpp updates to min2 and max2 funcs 2022-01-20 15:39:05 -08:00
minus.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
modelEvaluate.cpp Fixed modelEvaluate 2021-10-02 17:15:32 +03:00
modulo.cpp Fix tests 2021-10-07 00:19:37 +03:00
moduloOrZero.cpp Bit shift operations for FixedString and String data types. 2021-08-30 15:48:59 +08:00
monthName.cpp Function monthName small fix 2022-01-08 11:04:22 +03:00
multiFuzzyMatchAllIndices.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
multiFuzzyMatchAny.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
multiFuzzyMatchAnyIndex.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
multiIf.cpp Short circuit evaluation function throwIf support 2021-12-20 14:49:05 +03:00
multiMatchAllIndices.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
MultiMatchAllIndicesImpl.h Remove cruft 2021-10-28 02:10:39 +03:00
multiMatchAny.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
MultiMatchAnyImpl.h Remove cruft 2021-10-28 02:10:39 +03:00
multiMatchAnyIndex.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
multiply.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
multiSearchAllPositions.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
multiSearchAllPositionsCaseInsensitive.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
multiSearchAllPositionsCaseInsensitiveUTF8.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
MultiSearchAllPositionsImpl.h
multiSearchAllPositionsUTF8.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
multiSearchAny.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
multiSearchAnyCaseInsensitive.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
multiSearchAnyCaseInsensitiveUTF8.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
multiSearchAnyUTF8.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
multiSearchFirstIndex.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
multiSearchFirstIndexCaseInsensitive.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
multiSearchFirstIndexCaseInsensitiveUTF8.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
MultiSearchFirstIndexImpl.h Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
multiSearchFirstIndexUTF8.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
multiSearchFirstPosition.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
multiSearchFirstPositionCaseInsensitive.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
multiSearchFirstPositionCaseInsensitiveUTF8.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
MultiSearchFirstPositionImpl.h Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
multiSearchFirstPositionUTF8.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
MultiSearchImpl.h Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
negate.cpp Making Monotonicity an aggregate to use with designated initializers 2021-09-29 18:01:26 +02:00
neighbor.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
normalizedQueryHash.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
normalizeQuery.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
normalizeString.cpp Remove cruft 2021-10-28 02:10:39 +03:00
notEmpty.cpp Some fixes, more tests 2021-08-09 17:54:14 +03:00
notEquals.cpp Part 1. 2020-10-17 17:23:37 +03:00
notILike.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
notLike.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
now64.cpp Fix argument types for now and now64 2021-10-25 12:06:53 +03:00
now.cpp Fix argument types for now and now64 2021-10-25 12:06:53 +03:00
nullIf.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
padString.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
partitionId.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
PerformanceAdaptors.h Rename ContextConstPtr to ContextPtr. 2021-06-01 15:20:52 +03:00
plus.cpp Enable binary arithmetic between Decimal and Float 2022-01-01 09:11:21 +00:00
pointInEllipses.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
pointInPolygon.cpp Updated additional cases 2021-12-20 15:55:07 +03:00
polygonArea.cpp Updated additional cases 2021-12-20 15:55:07 +03:00
polygonConvexHull.cpp Updated additional cases 2021-12-20 15:55:07 +03:00
polygonPerimeter.cpp Updated additional cases 2021-12-20 15:55:07 +03:00
polygonsDistance.cpp Updated additional cases 2021-12-20 15:55:07 +03:00
polygonsEquals.cpp Updated additional cases 2021-12-20 15:55:07 +03:00
polygonsIntersection.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
polygonsSymDifference.cpp Updated additional cases 2021-12-20 15:55:07 +03:00
polygonsUnion.cpp Updated additional cases 2021-12-20 15:55:07 +03:00
polygonsWithin.cpp Updated additional cases 2021-12-20 15:55:07 +03:00
PolygonUtils.h Fix strange code in TypeList 2021-11-25 23:55:02 +03:00
position.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
positionCaseInsensitive.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
positionCaseInsensitiveUTF8.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
PositionImpl.h Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
positionUTF8.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
pow.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
queryID.cpp Refactor code 2021-08-10 14:31:15 +03:00
radians.cpp FunctionMathUnary remove macro usage 2022-01-22 18:44:36 +00:00
rand64.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
rand.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
randConstant.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
randomFixedString.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
randomPrintableASCII.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
randomString.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
randomStringUTF8.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
RapidJSONParser.h Remove cruft 2021-10-28 02:10:39 +03:00
readWkt.cpp Updated additional cases 2021-12-20 15:55:07 +03:00
regexpQuoteMeta.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
Regexps.h Fix build w/o hyperscan 2022-01-20 10:02:02 +03:00
registerFunctions.cpp Some improvements and fixes for Bool data type 2022-01-20 14:16:11 +03:00
registerFunctions.h
registerFunctionsArithmetic.cpp Add function bitSlice for String and FixedString 2022-01-02 18:49:09 +08:00
registerFunctionsComparison.cpp
registerFunctionsConditional.cpp
registerFunctionsConsistentHashing.cpp Remove sumburConsistentHash function 2020-12-31 02:22:04 +03:00
registerFunctionsDateTime.cpp Use FunctionFactory to invoke dateName 2022-01-07 13:06:47 +08:00
registerFunctionsFormatting.cpp Revert "Revert "Merge branch 'master' into master"" 2021-07-21 14:16:05 +03:00
registerFunctionsGeo.cpp Merge remote-tracking branch 'upstream/master' into ncb/h3-misc-funcs 2022-01-20 20:21:56 -08:00
registerFunctionsHigherOrder.cpp Revert "Function arrayFold for folding over array with accumulator" 2021-04-18 03:34:05 +03:00
registerFunctionsIntrospection.cpp
registerFunctionsMath.cpp add degrees and radians funcs 2022-01-19 22:18:44 -08:00
registerFunctionsMiscellaneous.cpp Merge branch 'master' of github.com:ClickHouse/ClickHouse into get_fuzz_data 2021-12-06 14:30:49 +00:00
registerFunctionsNull.cpp
registerFunctionsRandom.cpp
registerFunctionsReinterpret.cpp Function reinterpretAs updated to support big integers 2021-01-30 22:56:23 +03:00
registerFunctionsSnowflake.cpp fix: style 2021-08-16 00:49:33 +08:00
registerFunctionsString.cpp Merge branch 'master' into classification 2022-01-18 21:41:03 +00:00
registerFunctionsStringRegexp.cpp
registerFunctionsStringSearch.cpp Implement countSubstrings() 2020-11-26 22:58:16 +03:00
registerFunctionsTuple.cpp change name to function to "tupleToNameValuePairs" 2021-08-10 21:33:24 +01:00
registerFunctionsUnixTimestamp64.cpp
registerFunctionsVisitParam.cpp
reinterpretAs.cpp Slight performance improvement of "reinterpret" function 2021-12-12 03:29:26 +03:00
repeat.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
replaceAll.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
replaceOne.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
replaceRegexpAll.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
ReplaceRegexpImpl.h Remove unbundled re2 support 2022-01-20 10:00:49 +03:00
replaceRegexpOne.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
ReplaceStringImpl.h Rename "common" to "base" 2021-10-02 10:13:14 +03:00
replicate.cpp Upd upstream 2021-05-28 00:21:02 +03:00
replicate.h Fix insert into defalut nested LowCardinality column. 2022-01-10 21:30:28 +03:00
reverse.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
reverseUTF8.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
right.cpp Make "left" and "right" real functions 2022-01-05 05:32:40 +03:00
roundAge.cpp Bit shift operations for FixedString and String data types. 2021-08-30 15:48:59 +08:00
roundDuration.cpp Bit shift operations for FixedString and String data types. 2021-08-30 15:48:59 +08:00
roundToExp2.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
rowNumberInAllBlocks.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
rowNumberInBlock.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
runningAccumulate.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
runningConcurrency.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
runningDifference.cpp
runningDifference.h Try to simplify code 2021-08-09 18:01:08 +03:00
runningDifferenceStartingWithFirstValue.cpp
s2_fwd.h Remove cruft 2021-10-28 02:10:39 +03:00
s2CapContains.cpp use prefix increment for rows 2021-12-19 20:32:52 -08:00
s2CapUnion.cpp use prefix increment for rows 2021-12-19 20:32:52 -08:00
s2CellsIntersect.cpp use prefix increment for rows 2021-12-19 20:32:52 -08:00
s2GetNeighbors.cpp use prefix increment for rows 2021-12-19 20:32:52 -08:00
s2RectAdd.cpp use prefix increment for rows 2021-12-19 20:32:52 -08:00
s2RectContains.cpp use prefix increment for rows 2021-12-19 20:32:52 -08:00
s2RectIntersection.cpp use prefix increment for rows 2021-12-19 20:32:52 -08:00
s2RectUnion.cpp use prefix increment for rows 2021-12-19 20:32:52 -08:00
s2ToGeo.cpp use prefix increment for rows 2021-12-19 20:32:52 -08:00
serverConstants.cpp Move code around to avoid dlsym on Musl 2021-12-24 12:25:27 +03:00
sigmoid.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
sign.cpp Making Monotonicity an aggregate to use with designated initializers 2021-09-29 18:01:26 +02:00
SimdJSONParser.h Remove cruft 2021-10-28 02:10:39 +03:00
sin.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
sinh.cpp clang-format 2020-11-04 12:30:40 +01:00
sleep.cpp
sleep.h Rename "common" to "base" 2021-10-02 10:13:14 +03:00
sleepEachRow.cpp
snowflake.cpp fix: build issue 2021-08-19 00:47:40 +08:00
sqrt.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
startsWith.cpp
stem.cpp Remove cruft 2021-10-28 02:10:39 +03:00
stringCutToZero.cpp Refactor code 2021-08-10 14:31:15 +03:00
stringToH3.cpp Remove cruft 2021-10-28 02:10:39 +03:00
substring.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
subtractDays.cpp Upd upstream 2021-05-28 00:21:02 +03:00
subtractHours.cpp Upd upstream 2021-05-28 00:21:02 +03:00
subtractMinutes.cpp Upd upstream 2021-05-28 00:21:02 +03:00
subtractMonths.cpp Upd upstream 2021-05-28 00:21:02 +03:00
subtractQuarters.cpp Upd upstream 2021-05-28 00:21:02 +03:00
subtractSeconds.cpp Upd upstream 2021-05-28 00:21:02 +03:00
subtractWeeks.cpp Upd upstream 2021-05-28 00:21:02 +03:00
subtractYears.cpp Upd upstream 2021-05-28 00:21:02 +03:00
svg.cpp Updated additional cases 2021-12-20 15:55:07 +03:00
synonyms.cpp Remove cruft 2021-10-28 02:10:39 +03:00
tan.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
tanh.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
TargetSpecific.cpp
TargetSpecific.h Rename "common" to "base" 2021-10-02 10:13:14 +03:00
tgamma.cpp FunctionMathUnary remove macro usage 2022-01-22 18:44:36 +00:00
throwIf.cpp FunctionThrowIf fixed exception 2021-12-20 16:55:15 +03:00
tid.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
timeSlot.cpp Upd upstream 2021-05-28 00:21:02 +03:00
timeSlots.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
timezoneOf.cpp Move code around to avoid dlsym on Musl 2021-12-24 12:25:27 +03:00
timezoneOffset.cpp Alias timeZoneOffset added to source code 2021-04-26 19:17:23 +00:00
toBool.cpp Some improvements and fixes for Bool data type 2022-01-20 14:16:11 +03:00
toColumnTypeName.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
toCustomWeek.cpp Upd upstream 2021-05-28 00:21:02 +03:00
today.cpp Move code around to avoid dlsym on Musl 2021-12-24 12:25:27 +03:00
toDayOfMonth.cpp Add toDayOfMonth MySQL compatibility alias 2021-01-21 23:49:06 +03:00
toDayOfWeek.cpp Add toDayOfWeek MySQL compatibility alias 2021-01-21 23:46:00 +03:00
toDayOfYear.cpp Add toDayOfYear MySQL compatibility alias 2021-01-21 23:42:08 +03:00
toFixedString.cpp
toFixedString.h Try to simplify code 2021-08-09 18:01:08 +03:00
toHour.cpp Add toHour MySQL compatibility alias 2021-01-21 23:28:20 +03:00
toISOWeek.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toISOYear.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toJSONString.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
tokenExtractors.cpp Fixed function ngrams 2021-11-24 21:18:38 +08:00
toLowCardinality.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
toMinute.cpp Add toMinute MySQL compatibility alias 2021-01-25 16:35:58 +03:00
toModifiedJulianDay.cpp Making Monotonicity an aggregate to use with designated initializers 2021-09-29 18:01:26 +02:00
toMonday.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toMonth.cpp Add toMonth MySQL compatibility alias 2021-01-25 15:59:49 +03:00
toNullable.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
toQuarter.cpp Add toQuarter MySQL compatibility alias 2021-01-25 16:24:06 +03:00
toRelativeDayNum.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toRelativeHourNum.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toRelativeMinuteNum.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toRelativeMonthNum.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toRelativeQuarterNum.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toRelativeSecondNum.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toRelativeWeekNum.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toRelativeYearNum.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toSecond.cpp Add toSecond MySQL compatibility alias 2021-01-25 16:26:38 +03:00
toStartOfDay.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toStartOfFifteenMinutes.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toStartOfFiveMinute.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toStartOfHour.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toStartOfInterval.cpp Saturate date/datetime to zero 2022-01-03 02:07:08 +03:00
toStartOfISOYear.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toStartOfMinute.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toStartOfMonth.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toStartOfQuarter.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toStartOfSecond.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toStartOfTenMinutes.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toStartOfYear.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toTime.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toTimezone.cpp Making Monotonicity an aggregate to use with designated initializers 2021-09-29 18:01:26 +02:00
toTypeName.cpp Clean up 2021-08-13 11:18:34 +03:00
toUnixTimestamp64Micro.cpp Rename ContextConstPtr to ContextPtr. 2021-06-01 15:20:52 +03:00
toUnixTimestamp64Milli.cpp Rename ContextConstPtr to ContextPtr. 2021-06-01 15:20:52 +03:00
toUnixTimestamp64Nano.cpp Rename ContextConstPtr to ContextPtr. 2021-06-01 15:20:52 +03:00
toValidUTF8.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
toYear.cpp Add toYear MySQL compatibility alias 2021-01-25 16:00:11 +03:00
toYYYYMM.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toYYYYMMDD.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
toYYYYMMDDhhmmss.cpp remove includes from all Function sources 2020-07-29 21:14:48 +03:00
transform.cpp fix pr's bug @31839 2021-11-29 15:14:27 +08:00
TransformDateTime64.h Fix UBSan report in TransformDateTime64 2021-03-24 02:49:17 +03:00
trap.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
trim.cpp Rename "common" to "base" 2021-10-02 10:13:14 +03:00
tryBase64Decode.cpp
tuple.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
tupleElement.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
tupleHammingDistance.cpp Style 2021-09-09 15:41:22 +03:00
tupleToNameValuePairs.cpp Fix build 2021-08-13 16:34:16 +03:00
upper.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
upperUTF8.cpp hide symbols in nameless namespace 2020-09-07 21:00:37 +03:00
validateNestedArraySizes.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
VectorExtension.h Rename "common" to "base" 2021-10-02 10:13:14 +03:00
vectorFunctions.cpp Style 2021-09-23 16:42:06 +03:00
visibleWidth.cpp Try to simplify code 2021-08-09 18:01:08 +03:00
visitParamExtractBool.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
visitParamExtractFloat.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
visitParamExtractInt.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
visitParamExtractRaw.cpp Lowercase 2021-04-01 23:07:01 +03:00
visitParamExtractString.cpp Lowercase 2021-04-01 23:07:01 +03:00
visitParamExtractUInt.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
visitParamHas.cpp Better exception messages for some String-related functions 2021-09-26 08:18:37 +03:00
wkt.cpp Updated additional cases 2021-12-20 15:55:07 +03:00
yandexConsistentHash.cpp
yesterday.cpp Move code around to avoid dlsym on Musl 2021-12-24 12:25:27 +03:00