(columnName string)
| 27 | } |
| 28 | |
| 29 | func (s *SessionDataSet) IsNull(columnName string) (bool, error) { |
| 30 | return s.ioTDBRpcDataSet.isNullByColumnName(columnName) |
| 31 | } |
| 32 | |
| 33 | func (s *SessionDataSet) IsNullByIndex(columnIndex int32) (bool, error) { |
| 34 | return s.ioTDBRpcDataSet.isNullByIndex(columnIndex) |
nothing calls this directly
no test coverage detected