Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
4c7f244c
Commit
4c7f244c
authored
Feb 25, 2008
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branches/zip: enum db_err: Use the same InnoDB error numbers as the #defines
in earlier versions of InnoDB.
parent
f6694b31
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
include/db0err.h
include/db0err.h
+8
-8
No files found.
include/db0err.h
View file @
4c7f244c
...
...
@@ -25,7 +25,7 @@ enum db_err {
DB_MISSING_HISTORY
,
/* required history data has been
deleted due to lack of space in
rollback segment */
DB_CLUSTER_NOT_FOUND
,
DB_CLUSTER_NOT_FOUND
=
30
,
DB_TABLE_NOT_FOUND
,
DB_MUST_GET_MORE_FILE_SPACE
,
/* the database has to be stopped
and restarted with more file space */
...
...
@@ -67,23 +67,23 @@ enum db_err {
preconfigured undo slots, this can
only happen when there are too many
concurrent transactions */
DB_PRIMARY_KEY_IS_NULL
,
/* a column in the PRIMARY KEY
was found to be NULL */
DB_TABLE_ZIP_NO_IBD
,
/* trying to create a compressed
table in the system tablespace */
DB_UNSUPPORTED
,
/* when InnoDB sees any artefact or
a feature that it can't recoginize or
work with e.g., FT indexes created by
a later version of the engine. */
DB_PRIMARY_KEY_IS_NULL
,
/* a column in the PRIMARY KEY
was found to be NULL */
DB_TABLE_ZIP_NO_IBD
,
/* trying to create a compressed
table in the system tablespace */
/* The following are partial failure codes */
DB_FAIL
,
DB_FAIL
=
1000
,
DB_OVERFLOW
,
DB_UNDERFLOW
,
DB_STRONG_FAIL
,
DB_ZIP_OVERFLOW
,
DB_RECORD_NOT_FOUND
,
DB_RECORD_NOT_FOUND
=
1500
,
DB_END_OF_INDEX
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment