| 64 | } |
| 65 | |
| 66 | type Column interface { |
| 67 | GetDataType() TSDataType |
| 68 | GetEncoding() ColumnEncoding |
| 69 | GetBoolean(position int32) (bool, error) |
| 70 | GetInt(position int32) (int32, error) |
| 71 | GetLong(position int32) (int64, error) |
| 72 | GetFloat(position int32) (float32, error) |
| 73 | GetDouble(position int32) (float64, error) |
| 74 | GetBinary(position int32) (*Binary, error) |
| 75 | GetObject(position int32) (interface{}, error) |
| 76 | |
| 77 | GetBooleans() ([]bool, error) |
| 78 | GetInts() ([]int32, error) |
| 79 | GetLongs() ([]int64, error) |
| 80 | GetFloats() ([]float32, error) |
| 81 | GetDoubles() ([]float64, error) |
| 82 | GetBinaries() ([]*Binary, error) |
| 83 | GetObjects() ([]interface{}, error) |
| 84 | |
| 85 | MayHaveNull() bool |
| 86 | IsNull(position int32) bool |
| 87 | IsNulls() []bool |
| 88 | |
| 89 | GetPositionCount() int32 |
| 90 | } |
| 91 | |
| 92 | type baseColumn struct { |
| 93 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…