| 209 | inline bool IsDecimalType() const { return type == TYPE_DECIMAL; } |
| 210 | |
| 211 | inline bool IsStringType() const { |
| 212 | return type == TYPE_STRING || type == TYPE_VARCHAR || type == TYPE_CHAR; |
| 213 | } |
| 214 | |
| 215 | inline bool IsTimestampType() const { return type == TYPE_TIMESTAMP; } |
| 216 |
no outgoing calls