()
| 760 | } |
| 761 | |
| 762 | func (s *IoTDBRpcDataSet) checkRecord() (err error) { |
| 763 | if s.queryResultIndex > s.queryResultSize || s.tsBlockIndex >= s.tsBlockSize || s.queryResult == nil || s.curTsBlock == nil { |
| 764 | err = fmt.Errorf("no record remains") |
| 765 | } |
| 766 | return err |
| 767 | } |
| 768 | |
| 769 | func (s *IoTDBRpcDataSet) GetValueColumnStartIndex() int32 { |
| 770 | if s.ignoreTimestamp { |
no outgoing calls
no test coverage detected