(tsBlockColumnIndex int32)
| 698 | } |
| 699 | |
| 700 | func (s *IoTDBRpcDataSet) GetDateByTsBlockColumnIndex(tsBlockColumnIndex int32) (time.Time, error) { |
| 701 | if value, err := s.getIntByTsBlockColumnIndex(tsBlockColumnIndex); err != nil { |
| 702 | return time.Time{}, err |
| 703 | } else { |
| 704 | return Int32ToDate(value) |
| 705 | } |
| 706 | } |
| 707 | |
| 708 | func (s *IoTDBRpcDataSet) getDataTypeByIndex(columnIndex int32) (TSDataType, error) { |
| 709 | if index, err := s.getTsBlockColumnIndexForColumnIndex(columnIndex); err != nil { |
no test coverage detected