1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Remove unused code

This commit is contained in:
Marko Mäkelä
2019-01-24 17:16:23 +02:00
parent 48fb4504c5
commit d6ba849617
2 changed files with 0 additions and 8 deletions

View File

@ -107,13 +107,6 @@ cleanup:
* many transactions would fit in there
* so there is no need to reach for the heap */
/* Returns minimum multiple of HEAP_PAGE_SIZE that is >= length */
static inline size_t
heap_size(size_t length)
{
return (length + HEAP_PAGE_SIZE - 1)/HEAP_PAGE_SIZE*HEAP_PAGE_SIZE;
}
/*
Write the contents of a cache to wsrep provider.

View File

@ -204,7 +204,6 @@ static PSI_file_info wsrep_files[]=
my_bool wsrep_inited= 0; // initialized ?
static wsrep_uuid_t node_uuid= WSREP_UUID_UNDEFINED;
static wsrep_uuid_t cluster_uuid= WSREP_UUID_UNDEFINED;
static char cluster_uuid_str[40]= { 0, };
static char provider_name[256]= { 0, };