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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
a0417ccc
Commit
a0417ccc
authored
Feb 06, 2018
by
Monty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added error message for index file full
parent
88349678
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
sql/handler.cc
sql/handler.cc
+7
-1
sql/share/errmsg-utf8.txt
sql/share/errmsg-utf8.txt
+3
-0
No files found.
sql/handler.cc
View file @
a0417ccc
...
...
@@ -3679,13 +3679,19 @@ void handler::print_error(int error, myf errflag)
textno
=
ER_UNSUPPORTED_EXTENSION
;
break
;
case
HA_ERR_RECORD_FILE_FULL
:
case
HA_ERR_INDEX_FILE_FULL
:
{
textno
=
ER_RECORD_FILE_FULL
;
/* Write the error message to error log */
errflag
|=
ME_NOREFRESH
;
break
;
}
case
HA_ERR_INDEX_FILE_FULL
:
{
textno
=
ER_INDEX_FILE_FULL
;
/* Write the error message to error log */
errflag
|=
ME_NOREFRESH
;
break
;
}
case
HA_ERR_LOCK_WAIT_TIMEOUT
:
textno
=
ER_LOCK_WAIT_TIMEOUT
;
break
;
...
...
sql/share/errmsg-utf8.txt
View file @
a0417ccc
...
...
@@ -7905,3 +7905,6 @@ ER_VERS_TEMPORARY
ER_VERS_INPLACE_NOT_IMPLEMENTED
eng "Not implemented for system-versioned tables"
ER_INDEX_FILE_FULL
eng "The index file for table '%-.192s' is full"
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