summaryrefslogtreecommitdiff
path: root/src/sql/selectUninsertableLines.sql
blob: 2a57683ba46cb99d14f2b14cba421d4e0ca4b5b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
SELECT
	id,
	value,
	cast(detail ->> 'hostnameId' AS int) AS hostnameId
FROM
	entities
WHERE
	type = 'uninsertable_line'
	AND detail ->> 'retriedAt' IS NULL
ORDER BY
	id
LIMIT ?
FOR UPDATE