go-zero/tools/goctl/model/sql/parser/error.go
2021-02-09 13:50:21 +08:00

12 lines
232 B
Go

package parser
import (
"errors"
)
var (
errUnsupportDDL = errors.New("unexpected type")
errTableBodyNotFound = errors.New("create table spec not found")
errPrimaryKey = errors.New("unexpected join primary key")
)