SQLFragmentColumnIn generates an SQL fragment to be included as a predicate in a `WHERE` query for the existence of a set of values in a column like `id IN (...)`. The actual implementation depends on support for specific data types. Postgres uses arrays while SQLite uses a JSON fragment with `json_
(column string, values any)
| 136 | // |
| 137 | // API is not stable. DO NOT USE. |
| 138 | SQLFragmentColumnIn(column string, values any) (string, any, error) |
| 139 | |
| 140 | // SupportsListener gets whether this driver supports a listener. Drivers |
| 141 | // that don't support a listener support poll only mode only. |
no outgoing calls
no test coverage detected