1
0
forked from MTSR/mapserver
mapserver/server/db/sqlite/sql.go

18 lines
272 B
Go
Raw Normal View History

2019-02-05 15:13:34 +03:00
package sqlite
const getBlocksByMtimeQuery = `
select pos,data,mtime
from blocks b
where b.mtime > ?
order by b.mtime asc
limit ?
`
const countBlocksQuery = `
2019-02-15 19:53:32 +03:00
select count(*) from blocks b
2019-02-05 15:13:34 +03:00
`
const getBlockQuery = `
select pos,data,mtime from blocks b where b.pos = ?
`