| 293 | ExecValue& operator=(ExecValue&& other) = default; |
| 294 | |
| 295 | int64_t length() const { return this->is_array() ? this->array.length : 1; } |
| 296 | |
| 297 | bool is_array() const { return this->scalar == NULLPTR; } |
| 298 | bool is_scalar() const { return !this->is_array(); } |