error.go 232 B

1234567891011
  1. package parser
  2. import (
  3. "errors"
  4. )
  5. var (
  6. errUnsupportDDL = errors.New("unexpected type")
  7. errTableBodyNotFound = errors.New("create table spec not found")
  8. errPrimaryKey = errors.New("unexpected join primary key")
  9. )