jet/postgres/keywords.go

16 lines
259 B
Go
Raw Normal View History

2019-08-03 14:10:47 +02:00
package postgres
import "github.com/go-jet/jet/internal/jet"
const (
// DEFAULT is jet equivalent of SQL DEFAULT
DEFAULT = jet.DEFAULT
)
var (
// NULL is jet equivalent of SQL NULL
NULL = jet.NULL
// STAR is jet equivalent of SQL *
STAR = jet.STAR
)