mirror of
https://github.com/MariaDB/server.git
synced 2026-04-20 15:25:33 +02:00
Merge branch '10.0' into 10.1
This commit is contained in:
commit
a5679af1b1
222 changed files with 7304 additions and 3924 deletions
|
|
@ -376,7 +376,6 @@ static MYSQL_SYSVAR_STR(http_proxy, http_proxy,
|
|||
PLUGIN_VAR_READONLY | PLUGIN_VAR_RQCMDARG,
|
||||
"Proxy server host:port.", NULL, NULL,0);
|
||||
|
||||
|
||||
#ifndef DBUG_OFF
|
||||
static MYSQL_SYSVAR_ULONG(debug_startup_interval, debug_startup_interval,
|
||||
PLUGIN_VAR_RQCMDARG, "for debugging only",
|
||||
|
|
|
|||
|
|
@ -48,7 +48,6 @@ Url* Url::create(const char *url, size_t url_length)
|
|||
return self;
|
||||
}
|
||||
|
||||
|
||||
int Url::parse_proxy_server(const char *proxy_server, size_t proxy_length,
|
||||
LEX_STRING *host, LEX_STRING *port)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* Copyright (C) 2007 Google Inc.
|
||||
Copyright (c) 2008 MySQL AB, 2008-2009 Sun Microsystems, Inc.
|
||||
Use is subject to license terms.
|
||||
Copyright (c) 2008, 2013, Oracle and/or its affiliates.
|
||||
Copyright (c) 2011, 2016, MariaDB
|
||||
|
||||
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
|
||||
|
|
|
|||
|
|
@ -537,10 +537,14 @@ static struct st_mysql_show_var audit_status[]=
|
|||
#if defined(HAVE_PSI_INTERFACE) && !defined(FLOGGER_NO_PSI)
|
||||
/* These belong to the service initialization */
|
||||
static PSI_mutex_key key_LOCK_operations;
|
||||
static PSI_mutex_key key_LOCK_bigbuffer;
|
||||
static PSI_mutex_info mutex_key_list[]=
|
||||
{{ &key_LOCK_operations, "SERVER_AUDIT_plugin::lock_operations",
|
||||
{{ &key_LOCK_bigbuffer, "SERVER_AUDIT_plugin::lock_bigbuffer",
|
||||
PSI_FLAG_GLOBAL}};
|
||||
{
|
||||
{ &key_LOCK_operations, "SERVER_AUDIT_plugin::lock_operations",
|
||||
PSI_FLAG_GLOBAL},
|
||||
{ &key_LOCK_bigbuffer, "SERVER_AUDIT_plugin::lock_bigbuffer",
|
||||
PSI_FLAG_GLOBAL}
|
||||
};
|
||||
#endif
|
||||
static mysql_mutex_t lock_operations;
|
||||
static mysql_mutex_t lock_bigbuffer;
|
||||
|
|
@ -2845,7 +2849,7 @@ void __attribute__ ((constructor)) audit_plugin_so_init(void)
|
|||
}
|
||||
|
||||
memset(locinfo_ini_value, 'O', sizeof(locinfo_ini_value)-1);
|
||||
locinfo_ini_value[sizeof(locinfo_ini_value)]= 0;
|
||||
locinfo_ini_value[sizeof(locinfo_ini_value)-1]= 0;
|
||||
|
||||
exit:
|
||||
#ifdef _WIN32
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue