| 318 | uint16_t Size() { return col_cnt_; } |
| 319 | |
| 320 | bool IsNULL() { |
| 321 | if (type_ == kNull || (fsize_ == 0 && type_ != kEmptyString)) { |
| 322 | return true; |
| 323 | } |
| 324 | return false; |
| 325 | } |
| 326 | |
| 327 | // Get float can be only invoked once when after Next |
| 328 | bool GetFloat(float* value) { |
nothing calls this directly
no outgoing calls
no test coverage detected