(columnIndex int32)
| 465 | } |
| 466 | |
| 467 | func (s *IoTDBRpcDataSet) getBinaryByIndex(columnIndex int32) (*Binary, error) { |
| 468 | if index, err := s.getTsBlockColumnIndexForColumnIndex(columnIndex); err != nil { |
| 469 | return nil, err |
| 470 | } else { |
| 471 | return s.getBinaryByTsBlockColumnIndex(index) |
| 472 | } |
| 473 | } |
| 474 | |
| 475 | func (s *IoTDBRpcDataSet) getBinary(columnName string) (*Binary, error) { |
| 476 | if index, err := s.getTsBlockColumnIndexForColumnName(columnName); err != nil { |
no test coverage detected