summaryrefslogtreecommitdiff
path: root/mysys/errors.c
diff options
context:
space:
mode:
authorunknown <monty@donna.mysql.com>2000-09-12 03:14:13 +0300
committerunknown <monty@donna.mysql.com>2000-09-12 03:14:13 +0300
commitdaddebe5dbec9a968686ab3af0b212cffd479a8f (patch)
treec167967c90129e2f7d3757c7e35b3ccd2668436e /mysys/errors.c
parent31e14805cd49c6adb57bc8f24fe6819af8cef4d0 (diff)
parent77b11dbc1969d691625afc03feee6f52c07a51a0 (diff)
downloadmariadb-git-daddebe5dbec9a968686ab3af0b212cffd479a8f.tar.gz
Merge
sql/slave.cc: Auto merged sql/sql_parse.cc: Auto merged
Diffstat (limited to 'mysys/errors.c')
-rw-r--r--mysys/errors.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysys/errors.c b/mysys/errors.c
index 03b0b9d7f46..f74a56ed5e5 100644
--- a/mysys/errors.c
+++ b/mysys/errors.c
@@ -45,6 +45,7 @@ const char * NEAR globerrs[GLOBERRS]=
"Disk is full writing '%s'. Waiting for someone to free space...",
"Can't create directory '%s' (Errcode: %d)",
"Character set '%s' is not a compiled character set and is not specified in the '%s' file"
+ "Out of resources when opening file '%s' (Errcode: %d)",
};
void init_glob_errs(void)
@@ -80,5 +81,6 @@ void init_glob_errs()
EE(EE_DISK_FULL) = "Disk is full writing '%s'. Waiting for someone to free space...";
EE(EE_CANT_MKDIR) ="Can't create directory '%s' (Errcode: %d)";
EE(EE_UNKNOWN_CHARSET)= "Character set is not a compiled character set and is not specified in the %s file";
+ EE(EE_OUT_OF_FILERESOURCES)="Out of resources when opening file '%s' (Errcode: %d)",
}
#endif