(columnName string)
| 39 | } |
| 40 | |
| 41 | func (s *SessionDataSet) GetBoolean(columnName string) (bool, error) { |
| 42 | return s.ioTDBRpcDataSet.getBoolean(columnName) |
| 43 | } |
| 44 | |
| 45 | func (s *SessionDataSet) GetDoubleByIndex(columnIndex int32) (float64, error) { |
| 46 | return s.ioTDBRpcDataSet.getDoubleByIndex(columnIndex) |
nothing calls this directly
no test coverage detected