Clone this repo:
  1. 69f897f Merge pull request #11 from VividCortex/go-mod by Peter Matseykanets · 3 years, 3 months ago master v1.0.0
  2. a3a4a39 build: Update build workflow by Peter Matseykanets · 3 years, 3 months ago go-mod
  3. 150ee7f Init go modules by Peter Matseykanets · 3 years, 3 months ago
  4. 4c396ae Merge pull request #10 from VividCortex/whitesource/migrate-configuration by manu ^^ · 3 years, 7 months ago
  5. 3e776da Migrate .whitesource configuration file to inheritance mode by whitesource-for-github-com[bot] · 3 years, 7 months ago whitesource/migrate-configuration

mysqlerr

MySQL Server Error Constants.

Covers up to MySQL 8.0.19. Notice that some constants were renamed in later versions of MySQL, because they became obsolete. (In case you wonder: the names here match the symbols MySQL uses in source code.) Obsolete names haven't been changed in this package to avoid breaking code, but you should no longer be using them in applications. New and/or changed names (symbols) are given in inline comments.

const (
    ER_HASHCHK                  = 1000 // OBSOLETE_ER_HASHCHK
    ER_NISAMCHK                 = 1001 // OBSOLETE_ER_NISAMCHK
    // ...
    ER_WRONG_OUTER_JOIN         = 1120 // ER_WRONG_OUTER_JOIN_UNUSED
    // ...
    ER_DELAYED_CANT_CHANGE_LOCK = 1150 // OBSOLETE_ER_UNUSED1
    ER_TOO_MANY_DELAYED_THREADS = 1151 // OBSOLETE_ER_UNUSED2
    // ...
)