mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-11 13:19:36 +01:00
9 lines
217 B
Go
9 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")
|
|
)
|