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

Method IsIntegerType

be/src/runtime/types.h:200–203  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

198 inline bool IsBooleanType() const { return type == TYPE_BOOLEAN; }
199
200 inline bool IsIntegerType() const {
201 return type == TYPE_TINYINT || type == TYPE_SMALLINT || type == TYPE_INT
202 || type == TYPE_BIGINT;
203 }
204
205 inline bool IsFloatingPointType() const {
206 return type == TYPE_FLOAT || type == TYPE_DOUBLE;

Callers 5

CodegenUpdateSlotMethod · 0.80
WriteRowMethod · 0.80
OpenNextScanTokenMethod · 0.80
CanUseStatsMethod · 0.80
CanUseDeprecatedStatsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected