aboutsummaryrefslogtreecommitdiff
path: root/error.go
diff options
context:
space:
mode:
authorChristoph Martin <christoph.r.martin@gmail.com>2014-04-01 18:09:00 +0200
committerChristoph Martin <christoph.r.martin@gmail.com>2014-04-01 18:09:00 +0200
commit6ec1687716ce97bbcde07fa86113670c362801d2 (patch)
tree969a26d369a6e761d32a0e504f6135ee333e480b /error.go
parentEnable extended error codes. (diff)
downloadgolite-6ec1687716ce97bbcde07fa86113670c362801d2.tar.gz
golite-6ec1687716ce97bbcde07fa86113670c362801d2.tar.xz
Fix ErrNoticeRecoverWAL variable name.
Diffstat (limited to 'error.go')
-rw-r--r--error.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/error.go b/error.go
index 1d02220..52017bf 100644
--- a/error.go
+++ b/error.go
@@ -117,7 +117,7 @@ var (
ErrConstraintUnique = ErrConstraint.Extend(8)
ErrConstraintVTab = ErrConstraint.Extend(9)
ErrConstraintRowId = ErrConstraint.Extend(10)
- ErrNoticeRecoverWal = ErrNotice.Extend(1)
+ ErrNoticeRecoverWAL = ErrNotice.Extend(1)
ErrNoticeRecoverRollback = ErrNotice.Extend(2)
ErrWarningAutoIndex = ErrWarning.Extend(1)
)