| 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; |
no outgoing calls
no test coverage detected