| 52 | " WHERE json_nid IN ($1)" |
| 53 | |
| 54 | type queueJSONStatements struct { |
| 55 | db *sql.DB |
| 56 | insertJSONStmt *sql.Stmt |
| 57 | //deleteJSONStmt *sql.Stmt - prepared at runtime due to variadic |
| 58 | //selectJSONStmt *sql.Stmt - prepared at runtime due to variadic |
| 59 | } |
| 60 | |
| 61 | func NewSQLiteQueueJSONTable(db *sql.DB) (s *queueJSONStatements, err error) { |
| 62 | s = &queueJSONStatements{ |
nothing calls this directly
no outgoing calls
no test coverage detected