MCPcopy Create free account
hub / github.com/daodst/chat / queueJSONStatements

Struct queueJSONStatements

federationapi/storage/sqlite3/queue_json_table.go:54–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52 " WHERE json_nid IN ($1)"
53
54type 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
61func NewSQLiteQueueJSONTable(db *sql.DB) (s *queueJSONStatements, err error) {
62 s = &queueJSONStatements{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected