MCPcopy Create free account
hub / github.com/apache/impala / Min

Method Min

be/src/exprs/aggregate-functions-ir.cc:1259–1262  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1257
1258template<typename T>
1259void AggregateFunctions::Min(FunctionContext*, const T& src, T* dst) {
1260 if (src.is_null) return;
1261 if (dst->is_null || src.val < dst->val) *dst = src;
1262}
1263
1264template<typename T>
1265void AggregateFunctions::Max(FunctionContext*, const T& src, T* dst) {

Callers 2

NeedToCheckBatchMethod · 0.45
DeserializeMethod · 0.45

Calls 4

CopyStringValFunction · 0.85
GetConstFnAttrMethod · 0.80
implMethod · 0.80
FreeMethod · 0.45

Tested by

no test coverage detected