mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
c719e1fd33
Automaticly disable ma_test_recovery if not compiled with debugging. This fixes that make test works in Maria. Fixed wrong merge of ma_init.c from 5.1 Portability fixes: - Use my_chmod() instead of my_chmod() - Use my_access() instead of my_stat() to test if file exists - Don't test result value of pthread_mutex_lock() and pthread_mutex_unlock() as this is not portable - No reason to test if file exists before we delete it include/my_sys.h: Added my_chmod include/mysys_err.h: Added error for my_chmod mysys/Makefile.am: Added my_chmod mysys/errors.c: Added error for my_chmod mysys/my_init.c: Syncronize with 5.1 to fix setting of QueryPerformanceFrequency() storage/maria/ma_test1.c: Changed short option of --skip-delete and --skip-update to be more logical storage/maria/ma_test_recovery.expected: Updated results after adding more tests storage/maria/ma_test_recovery: Abort test nicely if we are runnning without debugging Added more tests Changed temporary file names so that one can run maria_chk on them Removed some old comments storage/maria/maria_read_log.c: Added note if maria_read_log will not be able to create byte-to-byte identical tables compared to normal execution storage/maria/unittest/ma_pagecache_consist.c: Removed wrong setting of buff that caused memory overwrite Use my_chmod() instead of chmod() Don't test result value of pthread_mutex_lock() and pthread_mutex_unlock() as this is not portable storage/maria/unittest/ma_pagecache_single.c: Use my_chmod() instead of chmod() Don't test result value of pthread_mutex_lock() and pthread_mutex_unlock() as this is not portable storage/maria/unittest/ma_test_loghandler_first_lsn-t.c: No reason to test if file exists before we delete it storage/maria/unittest/ma_test_loghandler_multithread-t.c: Don't test result value of pthread_mutex_lock() and pthread_mutex_unlock() as this is not portable storage/maria/unittest/ma_test_loghandler_noflush-t.c: No reason to test if file exists before we delete it storage/maria/unittest/ma_test_loghandler_nologs-t.c: Use my_access() instead of my_stat() to test if file exists storage/maria/unittest/ma_test_loghandler_pagecache-t.c: No reason to test if file exists before we delete it chmod -> my_chmod mysys/my_chmod.c: Added wrapper for chmod()
96 lines
4.4 KiB
C
96 lines
4.4 KiB
C
/* Copyright (C) 2000 MySQL AB
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
#include "mysys_priv.h"
|
|
#include "mysys_err.h"
|
|
|
|
#ifndef SHARED_LIBRARY
|
|
|
|
const char * NEAR globerrs[GLOBERRS]=
|
|
{
|
|
"Can't create/write to file '%s' (Errcode: %d)",
|
|
"Error reading file '%s' (Errcode: %d)",
|
|
"Error writing file '%s' (Errcode: %d)",
|
|
"Error on close of '%s' (Errcode: %d)",
|
|
"Out of memory (Needed %u bytes)",
|
|
"Error on delete of '%s' (Errcode: %d)",
|
|
"Error on rename of '%s' to '%s' (Errcode: %d)",
|
|
"",
|
|
"Unexpected eof found when reading file '%s' (Errcode: %d)",
|
|
"Can't lock file (Errcode: %d)",
|
|
"Can't unlock file (Errcode: %d)",
|
|
"Can't read dir of '%s' (Errcode: %d)",
|
|
"Can't get stat of '%s' (Errcode: %d)",
|
|
"Can't change size of file (Errcode: %d)",
|
|
"Can't open stream from handle (Errcode: %d)",
|
|
"Can't get working dirctory (Errcode: %d)",
|
|
"Can't change dir to '%s' (Errcode: %d)",
|
|
"Warning: '%s' had %d links",
|
|
"Warning: %d files and %d streams is left open\n",
|
|
"Disk is full writing '%s' (Errcode: %d). Waiting for someone to free space... Retry in %d secs",
|
|
"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)",
|
|
"Can't read value for symlink '%s' (Error %d)",
|
|
"Can't create symlink '%s' pointing at '%s' (Error %d)",
|
|
"Error on realpath() on '%s' (Error %d)",
|
|
"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",
|
|
"Can't change mode for file '%s' to 0x%lx (Error: %d)"
|
|
};
|
|
|
|
void init_glob_errs(void)
|
|
{
|
|
/* This is now done statically. */
|
|
}
|
|
|
|
#else
|
|
|
|
void init_glob_errs()
|
|
{
|
|
EE(EE_CANTCREATEFILE) = "Can't create/write to file '%s' (Errcode: %d)";
|
|
EE(EE_READ) = "Error reading file '%s' (Errcode: %d)";
|
|
EE(EE_WRITE) = "Error writing file '%s' (Errcode: %d)";
|
|
EE(EE_BADCLOSE) = "Error on close of '%'s (Errcode: %d)";
|
|
EE(EE_OUTOFMEMORY) = "Out of memory (Needed %u bytes)";
|
|
EE(EE_DELETE) = "Error on delete of '%s' (Errcode: %d)";
|
|
EE(EE_LINK) = "Error on rename of '%s' to '%s' (Errcode: %d)";
|
|
EE(EE_EOFERR) = "Unexpected eof found when reading file '%s' (Errcode: %d)";
|
|
EE(EE_CANTLOCK) = "Can't lock file (Errcode: %d)";
|
|
EE(EE_CANTUNLOCK) = "Can't unlock file (Errcode: %d)";
|
|
EE(EE_DIR) = "Can't read dir of '%s' (Errcode: %d)";
|
|
EE(EE_STAT) = "Can't get stat of '%s' (Errcode: %d)";
|
|
EE(EE_CANT_CHSIZE) = "Can't change size of file (Errcode: %d)";
|
|
EE(EE_CANT_OPEN_STREAM)= "Can't open stream from handle (Errcode: %d)";
|
|
EE(EE_GETWD) = "Can't get working dirctory (Errcode: %d)";
|
|
EE(EE_SETWD) = "Can't change dir to '%s' (Errcode: %d)";
|
|
EE(EE_LINK_WARNING) = "Warning: '%s' had %d links";
|
|
EE(EE_OPEN_WARNING) = "Warning: %d files and %d streams is left open\n";
|
|
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 '%s' 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)";
|
|
EE(EE_CANT_READLINK)= "Can't read value for symlink '%s' (Error %d)";
|
|
EE(EE_CANT_SYMLINK)= "Can't create symlink '%s' pointing at '%s' (Error %d)";
|
|
EE(EE_REALPATH)= "Error on realpath() on '%s' (Error %d)";
|
|
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";
|
|
EE(EE_CANT_CHMOD) = "Can't change mode for file '%s' to 0x%lx (Error: %d)";
|
|
}
|
|
#endif
|