Skip to content

Commit

Permalink
fix sqlfluff
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Leshiy committed Dec 10, 2024
1 parent 01cf804 commit 8048a25
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions catalyst-gateway/event-db/queries/insert_signed_documents.sql
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
INSERT INTO signed_docs
(
id,
ver,
type,
author,
id,
ver,
type,
author,
metadata,
payload,
payload,
raw
)
VALUES
($1, $2, $3, $4, $5, $6, $7)
ON CONFLICT (id, ver) DO UPDATE
SET
SET
type = signed_docs.type
WHERE
signed_docs.type = EXCLUDED.type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ SELECT
FROM signed_docs
WHERE
signed_docs.id = $1
AND signed_docs.ver = $2
AND signed_docs.ver = $2

0 comments on commit 8048a25

Please sign in to comment.