(columnIndex int32)
| 387 | } |
| 388 | |
| 389 | func (s *IoTDBRpcDataSet) getIntByIndex(columnIndex int32) (int32, error) { |
| 390 | if index, err := s.getTsBlockColumnIndexForColumnIndex(columnIndex); err != nil { |
| 391 | return 0, err |
| 392 | } else { |
| 393 | return s.getIntByTsBlockColumnIndex(index) |
| 394 | } |
| 395 | } |
| 396 | |
| 397 | func (s *IoTDBRpcDataSet) getInt(columnName string) (int32, error) { |
| 398 | if index, err := s.getTsBlockColumnIndexForColumnName(columnName); err != nil { |
no test coverage detected