From 0a48492462b440aa876af8977ddecb8c8b2939d1 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Wed, 3 Aug 2022 13:47:17 -0700 Subject: [PATCH] Remove unused query --- activitypub/persistence/persistence.go | 6 ------ db/db.go | 2 +- db/models.go | 2 +- db/query.sql | 2 -- db/query.sql.go | 13 +------------ 5 files changed, 3 insertions(+), 22 deletions(-) diff --git a/activitypub/persistence/persistence.go b/activitypub/persistence/persistence.go index d375e7d2d..1f631053a 100644 --- a/activitypub/persistence/persistence.go +++ b/activitypub/persistence/persistence.go @@ -277,12 +277,6 @@ func AddToOutbox(iri string, itemData []byte, typeString string, isLiveNotificat return tx.Commit() } -// GetObjectByID will return a string representation of a single object by the ID. -func GetObjectByID(id string) (string, error) { - value, err := _datastore.GetQueries().GetObjectFromOutboxByID(context.Background(), id) - return string(value), err -} - // GetObjectByIRI will return a string representation of a single object by the IRI. func GetObjectByIRI(iri string) (string, bool, time.Time, error) { row, err := _datastore.GetQueries().GetObjectFromOutboxByIRI(context.Background(), iri) diff --git a/db/db.go b/db/db.go index cbb8c9a5d..f30b89ec0 100644 --- a/db/db.go +++ b/db/db.go @@ -1,6 +1,6 @@ // Code generated by sqlc. DO NOT EDIT. // versions: -// sqlc v1.13.0 +// sqlc v1.14.0 package db diff --git a/db/models.go b/db/models.go index 91d932907..94e23b7d6 100644 --- a/db/models.go +++ b/db/models.go @@ -1,6 +1,6 @@ // Code generated by sqlc. DO NOT EDIT. // versions: -// sqlc v1.13.0 +// sqlc v1.14.0 package db diff --git a/db/query.sql b/db/query.sql index 6e386f802..4dfe8c6b8 100644 --- a/db/query.sql +++ b/db/query.sql @@ -29,8 +29,6 @@ SELECT iri, inbox, name, username, image, request, request_object, created_at, a -- name: GetOutboxWithOffset :many SELECT value FROM ap_outbox LIMIT $1 OFFSET $2; --- name: GetObjectFromOutboxByID :one -SELECT value FROM ap_outbox WHERE iri = $1; -- name: GetObjectFromOutboxByIRI :one SELECT value, live_notification, created_at FROM ap_outbox WHERE iri = $1; diff --git a/db/query.sql.go b/db/query.sql.go index 00975e9eb..ad4cb81f8 100644 --- a/db/query.sql.go +++ b/db/query.sql.go @@ -1,6 +1,6 @@ // Code generated by sqlc. DO NOT EDIT. // versions: -// sqlc v1.13.0 +// sqlc v1.14.0 // source: query.sql package db @@ -439,17 +439,6 @@ func (q *Queries) GetNotificationDestinationsForChannel(ctx context.Context, cha return items, nil } -const getObjectFromOutboxByID = `-- name: GetObjectFromOutboxByID :one -SELECT value FROM ap_outbox WHERE iri = $1 -` - -func (q *Queries) GetObjectFromOutboxByID(ctx context.Context, iri string) ([]byte, error) { - row := q.db.QueryRowContext(ctx, getObjectFromOutboxByID, iri) - var value []byte - err := row.Scan(&value) - return value, err -} - const getObjectFromOutboxByIRI = `-- name: GetObjectFromOutboxByIRI :one SELECT value, live_notification, created_at FROM ap_outbox WHERE iri = $1 `