···186186 [%rapper
187187 get_many
188188 {sql| SELECT @string{path}, @CID{cid}, @Blob{data}, @string{since} FROM records
189189- WHERE path LIKE concat(%string{collection}, '/', '%')
189189+ WHERE path LIKE %string{collection} || '/' || '%'
190190 AND (since < %string{cursor} OR %string{cursor} = '')
191191 ORDER BY since DESC LIMIT %int{limit}
192192 |sql}]
···198198 [%rapper
199199 get_many
200200 {sql| SELECT @string{path}, @CID{cid}, @Blob{data}, @string{since} FROM records
201201- WHERE path LIKE concat(%string{collection}, '/', '%')
201201+ WHERE path LIKE %string{collection} || '/' || '%'
202202 AND (since > %string{cursor} OR %string{cursor} = '')
203203 ORDER BY since ASC LIMIT %int{limit}
204204 |sql}]