| 51 | " WHERE json_nid = ANY($1)" |
| 52 | |
| 53 | type queueJSONStatements struct { |
| 54 | db *sql.DB |
| 55 | insertJSONStmt *sql.Stmt |
| 56 | deleteJSONStmt *sql.Stmt |
| 57 | selectJSONStmt *sql.Stmt |
| 58 | } |
| 59 | |
| 60 | func NewPostgresQueueJSONTable(db *sql.DB) (s *queueJSONStatements, err error) { |
| 61 | s = &queueJSONStatements{ |
nothing calls this directly
no outgoing calls
no test coverage detected