mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 18:00:24 +08:00
12 lines
232 B
Go
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")
|
|
)
|