| 217 | inline bool IsDateType() const { return type == TYPE_DATE; } |
| 218 | |
| 219 | inline bool IsVarLenStringType() const { |
| 220 | return type == TYPE_STRING || type == TYPE_VARCHAR; |
| 221 | } |
| 222 | |
| 223 | inline bool IsBinaryType() const { return is_binary_; } |
| 224 |
no outgoing calls