1
1
mirror of https://github.com/go-gitea/gitea synced 2025-01-10 17:54:27 +00:00
2016-11-04 08:43:11 +01:00

10 lines
217 B
Go

package builder
import "errors"
var (
ErrNotSupportType = errors.New("not supported SQL type")
ErrNoNotInConditions = errors.New("No NOT IN conditions")
ErrNoInConditions = errors.New("No IN conditions")
)