decimal.h | decimal.h | |||
---|---|---|---|---|
skipping to change at line 14 | skipping to change at line 14 | |||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation; version 2 of the License. | the Free Software Foundation; version 2 of the License. | |||
This program is distributed in the hope that it will be useful, | This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | |||
along with this program; if not, write to the Free Software | along with this program; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A */ | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-130 1, USA */ | |||
#ifndef _decimal_h | #ifndef _decimal_h | |||
#define _decimal_h | #define _decimal_h | |||
typedef enum | typedef enum | |||
{TRUNCATE=0, HALF_EVEN, HALF_UP, CEILING, FLOOR} | {TRUNCATE=0, HALF_EVEN, HALF_UP, CEILING, FLOOR} | |||
decimal_round_mode; | decimal_round_mode; | |||
typedef int32 decimal_digit_t; | typedef int32 decimal_digit_t; | |||
/** | /** | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
errmsg.h | errmsg.h | |||
---|---|---|---|---|
skipping to change at line 14 | skipping to change at line 14 | |||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation; version 2 of the License. | the Free Software Foundation; version 2 of the License. | |||
This program is distributed in the hope that it will be useful, | This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | |||
along with this program; if not, write to the Free Software | along with this program; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A */ | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-130 1, USA */ | |||
/* Error messages for MySQL clients */ | /* Error messages for MySQL clients */ | |||
/* (Error messages for the daemon are in sql/share/errmsg.txt) */ | /* (Error messages for the daemon are in sql/share/errmsg.txt) */ | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
extern "C" { | extern "C" { | |||
#endif | #endif | |||
void init_client_errs(void); | void init_client_errs(void); | |||
void finish_client_errs(void); | void finish_client_errs(void); | |||
extern const char *client_errors[]; /* Error messages */ | extern const char *client_errors[]; /* Error messages */ | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
my_alloc.h | my_alloc.h | |||
---|---|---|---|---|
skipping to change at line 14 | skipping to change at line 14 | |||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation; version 2 of the License. | the Free Software Foundation; version 2 of the License. | |||
This program is distributed in the hope that it will be useful, | This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | |||
along with this program; if not, write to the Free Software | along with this program; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A */ | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-130 1, USA */ | |||
/* | /* | |||
Data structures for mysys/my_alloc.c (root memory allocator) | Data structures for mysys/my_alloc.c (root memory allocator) | |||
*/ | */ | |||
#ifndef _my_alloc_h | #ifndef _my_alloc_h | |||
#define _my_alloc_h | #define _my_alloc_h | |||
#define ALLOC_MAX_BLOCK_TO_DROP 4096 | #define ALLOC_MAX_BLOCK_TO_DROP 4096 | |||
#define ALLOC_MAX_BLOCK_USAGE_BEFORE_DROP 10 | #define ALLOC_MAX_BLOCK_USAGE_BEFORE_DROP 10 | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
my_attribute.h | my_attribute.h | |||
---|---|---|---|---|
skipping to change at line 14 | skipping to change at line 14 | |||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation; version 2 of the License. | the Free Software Foundation; version 2 of the License. | |||
This program is distributed in the hope that it will be useful, | This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | |||
along with this program; if not, write to the Free Software | along with this program; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A */ | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-130 1, USA */ | |||
/* | /* | |||
Helper macros used for setting different __attributes__ | Helper macros used for setting different __attributes__ | |||
on functions in a portable fashion | on functions in a portable fashion | |||
*/ | */ | |||
#ifndef _my_attribute_h | #ifndef _my_attribute_h | |||
#define _my_attribute_h | #define _my_attribute_h | |||
/* | /* | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
my_config.h | my_config.h | |||
---|---|---|---|---|
skipping to change at line 1176 | skipping to change at line 1176 | |||
/* Name of package */ | /* Name of package */ | |||
#define PACKAGE "mysql" | #define PACKAGE "mysql" | |||
/* Define to the address where bug reports for this package should be sent. */ | /* Define to the address where bug reports for this package should be sent. */ | |||
#define PACKAGE_BUGREPORT "" | #define PACKAGE_BUGREPORT "" | |||
/* Define to the full name of this package. */ | /* Define to the full name of this package. */ | |||
#define PACKAGE_NAME "MySQL Server" | #define PACKAGE_NAME "MySQL Server" | |||
/* Define to the full name and version of this package. */ | /* Define to the full name and version of this package. */ | |||
#define PACKAGE_STRING "MySQL Server 5.1.69" | #define PACKAGE_STRING "MySQL Server 5.1.70" | |||
/* Define to the one symbol short name of this package. */ | /* Define to the one symbol short name of this package. */ | |||
#define PACKAGE_TARNAME "mysql" | #define PACKAGE_TARNAME "mysql" | |||
/* Define to the version of this package. */ | /* Define to the version of this package. */ | |||
#define PACKAGE_VERSION "5.1.69" | #define PACKAGE_VERSION "5.1.70" | |||
/* mysql client protocol version */ | /* mysql client protocol version */ | |||
#define PROTOCOL_VERSION 10 | #define PROTOCOL_VERSION 10 | |||
/* qsort returns void */ | /* qsort returns void */ | |||
#define QSORT_TYPE_IS_VOID 1 | #define QSORT_TYPE_IS_VOID 1 | |||
/* The return type of qsort (int or void). */ | /* The return type of qsort (int or void). */ | |||
#define RETQSORTTYPE void | #define RETQSORTTYPE void | |||
skipping to change at line 1298 | skipping to change at line 1298 | |||
#define USE_MB_IDENT 1 | #define USE_MB_IDENT 1 | |||
/* Needs to use mysys_new helpers */ | /* Needs to use mysys_new helpers */ | |||
/* #undef USE_MYSYS_NEW */ | /* #undef USE_MYSYS_NEW */ | |||
/* used new readline interface (are rl_completion_func_t and | /* used new readline interface (are rl_completion_func_t and | |||
rl_compentry_func_t defined) */ | rl_compentry_func_t defined) */ | |||
/* #undef USE_NEW_READLINE_INTERFACE */ | /* #undef USE_NEW_READLINE_INTERFACE */ | |||
/* Version number of package */ | /* Version number of package */ | |||
#define VERSION "5.1.69" | #define VERSION "5.1.70" | |||
/* sighandler type is void (*signal ()) (); */ | /* sighandler type is void (*signal ()) (); */ | |||
#define VOID_SIGHANDLER 1 | #define VOID_SIGHANDLER 1 | |||
/* Include Archive Storage Engine into mysqld */ | /* Include Archive Storage Engine into mysqld */ | |||
/* #undef WITH_ARCHIVE_STORAGE_ENGINE */ | /* #undef WITH_ARCHIVE_STORAGE_ENGINE */ | |||
/* Include Basic Write-only Read-never tables into mysqld */ | /* Include Basic Write-only Read-never tables into mysqld */ | |||
/* #undef WITH_BLACKHOLE_STORAGE_ENGINE */ | /* #undef WITH_BLACKHOLE_STORAGE_ENGINE */ | |||
End of changes. 3 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added | |||
my_dir.h | my_dir.h | |||
---|---|---|---|---|
skipping to change at line 14 | skipping to change at line 14 | |||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation; version 2 of the License. | the Free Software Foundation; version 2 of the License. | |||
This program is distributed in the hope that it will be useful, | This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | |||
along with this program; if not, write to the Free Software | along with this program; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A */ | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-130 1, USA */ | |||
#ifndef _my_dir_h | #ifndef _my_dir_h | |||
#define _my_dir_h | #define _my_dir_h | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
extern "C" { | extern "C" { | |||
#endif | #endif | |||
#ifndef MY_DIR_H | #ifndef MY_DIR_H | |||
#define MY_DIR_H | #define MY_DIR_H | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
my_list.h | my_list.h | |||
---|---|---|---|---|
skipping to change at line 14 | skipping to change at line 14 | |||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation; version 2 of the License. | the Free Software Foundation; version 2 of the License. | |||
This program is distributed in the hope that it will be useful, | This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | |||
along with this program; if not, write to the Free Software | along with this program; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A */ | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-130 1, USA */ | |||
#ifndef _list_h_ | #ifndef _list_h_ | |||
#define _list_h_ | #define _list_h_ | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
extern "C" { | extern "C" { | |||
#endif | #endif | |||
typedef struct st_list { | typedef struct st_list { | |||
struct st_list *prev,*next; | struct st_list *prev,*next; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
my_net.h | my_net.h | |||
---|---|---|---|---|
skipping to change at line 14 | skipping to change at line 14 | |||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation; version 2 of the License. | the Free Software Foundation; version 2 of the License. | |||
This program is distributed in the hope that it will be useful, | This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | |||
along with this program; if not, write to the Free Software | along with this program; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A */ | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-130 1, USA */ | |||
/* | /* | |||
thread safe version of some common functions: | thread safe version of some common functions: | |||
my_inet_ntoa | my_inet_ntoa | |||
This file is also used to make handling of sockets and ioctl() | This file is also used to make handling of sockets and ioctl() | |||
portable accross systems. | portable accross systems. | |||
*/ | */ | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
my_pthread.h | my_pthread.h | |||
---|---|---|---|---|
skipping to change at line 14 | skipping to change at line 14 | |||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation; version 2 of the License. | the Free Software Foundation; version 2 of the License. | |||
This program is distributed in the hope that it will be useful, | This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | |||
along with this program; if not, write to the Free Software | along with this program; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A */ | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-130 1, USA */ | |||
/* Defines to make different thread packages compatible */ | /* Defines to make different thread packages compatible */ | |||
#ifndef _my_pthread_h | #ifndef _my_pthread_h | |||
#define _my_pthread_h | #define _my_pthread_h | |||
#ifndef ETIME | #ifndef ETIME | |||
#define ETIME ETIMEDOUT /* For FreeBSD */ | #define ETIME ETIMEDOUT /* For FreeBSD */ | |||
#endif | #endif | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
my_sys.h | my_sys.h | |||
---|---|---|---|---|
skipping to change at line 14 | skipping to change at line 14 | |||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation; version 2 of the License. | the Free Software Foundation; version 2 of the License. | |||
This program is distributed in the hope that it will be useful, | This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | |||
along with this program; if not, write to the Free Software | along with this program; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A */ | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-130 1, USA */ | |||
#ifndef _my_sys_h | #ifndef _my_sys_h | |||
#define _my_sys_h | #define _my_sys_h | |||
C_MODE_START | C_MODE_START | |||
#ifdef HAVE_AIOWAIT | #ifdef HAVE_AIOWAIT | |||
#include <sys/asynch.h> /* Used by record-cache */ | #include <sys/asynch.h> /* Used by record-cache */ | |||
typedef struct my_aio_result { | typedef struct my_aio_result { | |||
aio_result_t result; | aio_result_t result; | |||
int pending; | int pending; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
my_xml.h | my_xml.h | |||
---|---|---|---|---|
skipping to change at line 14 | skipping to change at line 14 | |||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation; version 2 of the License. | the Free Software Foundation; version 2 of the License. | |||
This program is distributed in the hope that it will be useful, | This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | |||
along with this program; if not, write to the Free Software | along with this program; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A */ | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-130 1, USA */ | |||
#ifndef _my_xml_h | #ifndef _my_xml_h | |||
#define _my_xml_h | #define _my_xml_h | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
extern "C" { | extern "C" { | |||
#endif | #endif | |||
#define MY_XML_OK 0 | #define MY_XML_OK 0 | |||
#define MY_XML_ERROR 1 | #define MY_XML_ERROR 1 | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
mysql_com.h | mysql_com.h | |||
---|---|---|---|---|
skipping to change at line 14 | skipping to change at line 14 | |||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation; version 2 of the License. | the Free Software Foundation; version 2 of the License. | |||
This program is distributed in the hope that it will be useful, | This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | |||
along with this program; if not, write to the Free Software | along with this program; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A */ | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-130 1, USA */ | |||
/* | /* | |||
** Common definition between mysql server & client | ** Common definition between mysql server & client | |||
*/ | */ | |||
#ifndef _mysql_com_h | #ifndef _mysql_com_h | |||
#define _mysql_com_h | #define _mysql_com_h | |||
#define HOSTNAME_LENGTH 60 | #define HOSTNAME_LENGTH 60 | |||
#define SYSTEM_CHARSET_MBMAXLEN 3 | #define SYSTEM_CHARSET_MBMAXLEN 3 | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
mysql_time.h | mysql_time.h | |||
---|---|---|---|---|
skipping to change at line 14 | skipping to change at line 14 | |||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation; version 2 of the License. | the Free Software Foundation; version 2 of the License. | |||
This program is distributed in the hope that it will be useful, | This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | |||
along with this program; if not, write to the Free Software | along with this program; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ | |||
#ifndef _mysql_time_h_ | #ifndef _mysql_time_h_ | |||
#define _mysql_time_h_ | #define _mysql_time_h_ | |||
/* | /* | |||
Time declarations shared between the server and client API: | Time declarations shared between the server and client API: | |||
you should not add anything to this header unless it's used | you should not add anything to this header unless it's used | |||
(and hence should be visible) in mysql.h. | (and hence should be visible) in mysql.h. | |||
If you're looking for a place to add new time-related declaration, | If you're looking for a place to add new time-related declaration, | |||
it's most likely my_time.h. See also "C API Handling of Date | it's most likely my_time.h. See also "C API Handling of Date | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
mysql_version.h | mysql_version.h | |||
---|---|---|---|---|
skipping to change at line 12 | skipping to change at line 12 | |||
This file is public domain and comes with NO WARRANTY of any kind */ | This file is public domain and comes with NO WARRANTY of any kind */ | |||
/* Version numbers for protocol & mysqld */ | /* Version numbers for protocol & mysqld */ | |||
#ifndef _mysql_version_h | #ifndef _mysql_version_h | |||
#define _mysql_version_h | #define _mysql_version_h | |||
#ifdef _CUSTOMCONFIG_ | #ifdef _CUSTOMCONFIG_ | |||
#include <custom_conf.h> | #include <custom_conf.h> | |||
#else | #else | |||
#define PROTOCOL_VERSION 10 | #define PROTOCOL_VERSION 10 | |||
#define MYSQL_SERVER_VERSION "5.1.69" | #define MYSQL_SERVER_VERSION "5.1.70" | |||
#define MYSQL_BASE_VERSION "mysqld-5.1" | #define MYSQL_BASE_VERSION "mysqld-5.1" | |||
#define MYSQL_SERVER_SUFFIX_DEF "" | #define MYSQL_SERVER_SUFFIX_DEF "" | |||
#define FRM_VER 6 | #define FRM_VER 6 | |||
#define MYSQL_VERSION_ID 50169 | #define MYSQL_VERSION_ID 50170 | |||
#define MYSQL_PORT 3306 | #define MYSQL_PORT 3306 | |||
#define MYSQL_PORT_DEFAULT 0 | #define MYSQL_PORT_DEFAULT 0 | |||
#define MYSQL_UNIX_ADDR "/tmp/mysql.sock" | #define MYSQL_UNIX_ADDR "/tmp/mysql.sock" | |||
#define MYSQL_CONFIG_NAME "my" | #define MYSQL_CONFIG_NAME "my" | |||
#define MYSQL_COMPILATION_COMMENT "Source distribution" | #define MYSQL_COMPILATION_COMMENT "Source distribution" | |||
/* mysqld compile time options */ | /* mysqld compile time options */ | |||
#endif /* _CUSTOMCONFIG_ */ | #endif /* _CUSTOMCONFIG_ */ | |||
#ifndef LICENSE | #ifndef LICENSE | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||
sql_common.h | sql_common.h | |||
---|---|---|---|---|
skipping to change at line 15 | skipping to change at line 15 | |||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation; version 2 of the License. | the Free Software Foundation; version 2 of the License. | |||
This program is distributed in the hope that it will be useful, | This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | |||
along with this program; if not, write to the Free Software | along with this program; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A */ | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-130 1, USA */ | |||
extern const char *unknown_sqlstate; | extern const char *unknown_sqlstate; | |||
extern const char *cant_connect_sqlstate; | extern const char *cant_connect_sqlstate; | |||
extern const char *not_error_sqlstate; | extern const char *not_error_sqlstate; | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
extern "C" { | extern "C" { | |||
#endif | #endif | |||
extern CHARSET_INFO *default_client_charset_info; | extern CHARSET_INFO *default_client_charset_info; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
sslopt-case.h | sslopt-case.h | |||
---|---|---|---|---|
skipping to change at line 14 | skipping to change at line 14 | |||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation; version 2 of the License. | the Free Software Foundation; version 2 of the License. | |||
This program is distributed in the hope that it will be useful, | This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | |||
along with this program; if not, write to the Free Software | along with this program; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A */ | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-130 1, USA */ | |||
#ifdef HAVE_OPENSSL | #ifdef HAVE_OPENSSL | |||
case OPT_SSL_KEY: | case OPT_SSL_KEY: | |||
case OPT_SSL_CERT: | case OPT_SSL_CERT: | |||
case OPT_SSL_CA: | case OPT_SSL_CA: | |||
case OPT_SSL_CAPATH: | case OPT_SSL_CAPATH: | |||
case OPT_SSL_CIPHER: | case OPT_SSL_CIPHER: | |||
/* | /* | |||
Enable use of SSL if we are using any ssl option | Enable use of SSL if we are using any ssl option | |||
One can disable SSL later by using --skip-ssl or --ssl=0 | One can disable SSL later by using --skip-ssl or --ssl=0 | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
sslopt-vars.h | sslopt-vars.h | |||
---|---|---|---|---|
skipping to change at line 14 | skipping to change at line 14 | |||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation; version 2 of the License. | the Free Software Foundation; version 2 of the License. | |||
This program is distributed in the hope that it will be useful, | This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | |||
along with this program; if not, write to the Free Software | along with this program; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A */ | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-130 1, USA */ | |||
#ifdef HAVE_OPENSSL | #ifdef HAVE_OPENSSL | |||
#ifdef SSL_VARS_NOT_STATIC | #ifdef SSL_VARS_NOT_STATIC | |||
#define SSL_STATIC | #define SSL_STATIC | |||
#else | #else | |||
#define SSL_STATIC static | #define SSL_STATIC static | |||
#endif | #endif | |||
SSL_STATIC my_bool opt_use_ssl = 0; | SSL_STATIC my_bool opt_use_ssl = 0; | |||
SSL_STATIC char *opt_ssl_ca = 0; | SSL_STATIC char *opt_ssl_ca = 0; | |||
SSL_STATIC char *opt_ssl_capath = 0; | SSL_STATIC char *opt_ssl_capath = 0; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
typelib.h | typelib.h | |||
---|---|---|---|---|
skipping to change at line 14 | skipping to change at line 14 | |||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation; version 2 of the License. | the Free Software Foundation; version 2 of the License. | |||
This program is distributed in the hope that it will be useful, | This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | |||
along with this program; if not, write to the Free Software | along with this program; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A */ | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-130 1, USA */ | |||
#ifndef _typelib_h | #ifndef _typelib_h | |||
#define _typelib_h | #define _typelib_h | |||
#include "my_alloc.h" | #include "my_alloc.h" | |||
typedef struct st_typelib { /* Different types saved here */ | typedef struct st_typelib { /* Different types saved here */ | |||
unsigned int count; /* How many types */ | unsigned int count; /* How many types */ | |||
const char *name; /* Name of typelib */ | const char *name; /* Name of typelib */ | |||
const char **type_names; | const char **type_names; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||