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