diff options
author | monty@mysql.com <> | 2006-05-04 06:28:24 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2006-05-04 06:28:24 +0300 |
commit | 86b2be8d35d63437afcbc9458adc4c9c0f0def5a (patch) | |
tree | f9bdf22894017186b47db65bd16339e2f5b9646a /mysys/errors.c | |
parent | 8f6ed291a76d4f5b622bcf2ee54ef1f49b7326d1 (diff) | |
download | mariadb-git-86b2be8d35d63437afcbc9458adc4c9c0f0def5a.tar.gz |
After merge fixes
Remove compiler warnings
Fix some broken tests
Workaround for syncronization bug in NDB (Bug #16445)
Diffstat (limited to 'mysys/errors.c')
-rw-r--r-- | mysys/errors.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysys/errors.c b/mysys/errors.c index 630e4511124..5fe9eadb522 100644 --- a/mysys/errors.c +++ b/mysys/errors.c @@ -50,6 +50,7 @@ const char * NEAR globerrs[GLOBERRS]= "Can't sync file '%s' to disk (Errcode: %d)", "Collation '%s' is not a compiled collation and is not specified in the '%s' file", "File '%s' not found (Errcode: %d)", + "File '%s' (fileno: %d) was not closed" }; void init_glob_errs(void) @@ -89,5 +90,6 @@ void init_glob_errs() EE(EE_SYNC)= "Can't sync file '%s' to disk (Errcode: %d)"; EE(EE_UNKNOWN_COLLATION)= "Collation '%s' is not a compiled collation and is not specified in the %s file"; EE(EE_FILENOTFOUND) = "File '%s' not found (Errcode: %d)"; + EE(EE_FILE_NOT_CLOSED) = "File '%s' (fileno: %d) was not closed"; } #endif |