CompositeIndexGetter is a type accessed by index that can be converted into a PostgreSQL composite.
| 12 | |
| 13 | // CompositeIndexGetter is a type accessed by index that can be converted into a PostgreSQL composite. |
| 14 | type CompositeIndexGetter interface { |
| 15 | // IsNull returns true if the value is SQL NULL. |
| 16 | IsNull() bool |
| 17 | |
| 18 | // Index returns the element at i. |
| 19 | Index(i int) any |
| 20 | } |
| 21 | |
| 22 | // CompositeIndexScanner is a type accessed by index that can be scanned from a PostgreSQL composite. |
| 23 | type CompositeIndexScanner interface { |
no outgoing calls
no test coverage detected