JSONBArray represents an array of any type (`[]interface{}`) that is compatible with PostgreSQL's JSONB type. JSONBArray satisfies sqlbuilder.ScannerValuer.
| 51 | // compatible with PostgreSQL's JSONB type. JSONBArray satisfies |
| 52 | // sqlbuilder.ScannerValuer. |
| 53 | type JSONBArray []interface{} |
| 54 | |
| 55 | // Value satisfies the driver.Valuer interface. |
| 56 | func (a JSONBArray) Value() (driver.Value, error) { |
no outgoing calls
no test coverage detected