forked from MTSR/mapserver
18 lines
272 B
Go
18 lines
272 B
Go
package sqlite
|
|
|
|
const getBlocksByMtimeQuery = `
|
|
select pos,data,mtime
|
|
from blocks b
|
|
where b.mtime > ?
|
|
order by b.mtime asc
|
|
limit ?
|
|
`
|
|
|
|
const countBlocksQuery = `
|
|
select count(*) from blocks b
|
|
`
|
|
|
|
const getBlockQuery = `
|
|
select pos,data,mtime from blocks b where b.pos = ?
|
|
`
|