jet/postgres/keywords.go
2020-06-27 18:48:19 +02:00

15 lines
262 B
Go

package postgres
import "github.com/go-jet/jet/v2/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
)