SafeQuery replaces any placeholders found in the query.
(query string, params ...interface{})
| 31 | |
| 32 | // SafeQuery replaces any placeholders found in the query. |
| 33 | func SafeQuery(query string, params ...interface{}) *orm.SafeQueryAppender { |
| 34 | return orm.SafeQuery(query, params...) |
| 35 | } |
| 36 | |
| 37 | // In accepts a slice and returns a wrapper that can be used with PostgreSQL |
| 38 | // IN operator: |
nothing calls this directly
no test coverage detected
searching dependent graphs…