mapserver/server/db/postgres/sql.go
NatureFreshMilk a0a8569168 go fmt
2019-02-14 09:05:39 +01:00

21 lines
352 B
Go

package postgres
const getBlocksByMtimeQuery = `
select posx,posy,posz,data,mtime
from blocks b
where b.mtime > ?
order by b.mtime asc
limit ?
`
const countBlocksQuery = `
select count(*) from blocks b where b.mtime >= ? and b.mtime <= ?
`
const getBlockQuery = `
select pos,data,mtime from blocks b
where b.posx = ?
and b.posy = ?
and b.posz = ?
`