mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
This is an implementation of two WL items:
- WL#3158: IM: Instance configuration extensions; - WL#3159: IM: --bootstrap and --start-default-instance modes The following new statements have been added: - CREATE INSTANCE; - DROP INSTANCE; The behaviour of the following statements have been changed: - SET; - UNSET; - FLUSH INSTANCES; - SHOW INSTANCES; - SHOW INSTANCE OPTIONS;
This commit is contained in:
@ -14,14 +14,14 @@
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
||||
|
||||
#include <my_global.h>
|
||||
|
||||
#include "log.h"
|
||||
#include "portability.h"
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <my_global.h>
|
||||
#include <m_string.h>
|
||||
#include <my_sys.h>
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
/*
|
||||
TODO:
|
||||
- add flexible header support
|
||||
@ -71,7 +71,7 @@ static inline void log(FILE *file, const char *format, va_list args)
|
||||
{
|
||||
int size= sizeof(buff_stack) * 2;
|
||||
buff_msg= (char*) my_malloc(size, MYF(0));
|
||||
while (true)
|
||||
while (TRUE)
|
||||
{
|
||||
if (buff_msg == 0)
|
||||
{
|
||||
|
Reference in New Issue
Block a user