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