error.go 229 B

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