Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
0276d38f
Commit
0276d38f
authored
Jun 11, 2004
by
konstantin@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/home/kostja/mysql/mysql-4.1-root
parents
be642b9b
f08bbd1f
Changes
29
Hide whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
1 addition
and
28 deletions
+1
-28
client/mysqlbinlog.cc
client/mysqlbinlog.cc
+0
-1
client/mysqldump.c
client/mysqldump.c
+0
-1
heap/hp_hash.c
heap/hp_hash.c
+0
-1
include/m_string.h
include/m_string.h
+0
-1
include/my_dbug.h
include/my_dbug.h
+1
-0
libmysql/libmysql.c
libmysql/libmysql.c
+0
-1
myisam/ftdefs.h
myisam/ftdefs.h
+0
-1
myisam/mi_delete.c
myisam/mi_delete.c
+0
-1
myisam/mi_dynrec.c
myisam/mi_dynrec.c
+0
-1
myisam/mi_key.c
myisam/mi_key.c
+0
-1
myisam/mi_open.c
myisam/mi_open.c
+0
-1
myisam/mi_search.c
myisam/mi_search.c
+0
-1
myisam/mi_write.c
myisam/mi_write.c
+0
-1
mysys/mf_iocache.c
mysys/mf_iocache.c
+0
-1
mysys/mf_iocache2.c
mysys/mf_iocache2.c
+0
-1
mysys/mf_keycache.c
mysys/mf_keycache.c
+0
-1
mysys/my_bitmap.c
mysys/my_bitmap.c
+0
-1
mysys/my_gethostbyname.c
mysys/my_gethostbyname.c
+0
-1
mysys/my_getopt.c
mysys/my_getopt.c
+0
-1
mysys/my_pthread.c
mysys/my_pthread.c
+0
-1
mysys/my_seek.c
mysys/my_seek.c
+0
-1
mysys/rijndael.c
mysys/rijndael.c
+0
-1
mysys/thr_alarm.c
mysys/thr_alarm.c
+0
-1
sql-common/client.c
sql-common/client.c
+0
-1
sql/mysql_priv.h
sql/mysql_priv.h
+0
-1
sql/sql_string.cc
sql/sql_string.cc
+0
-1
strings/ctype-simple.c
strings/ctype-simple.c
+0
-1
strings/ctype-ucs2.c
strings/ctype-ucs2.c
+0
-1
strings/my_vsnprintf.c
strings/my_vsnprintf.c
+0
-1
No files found.
client/mysqlbinlog.cc
View file @
0276d38f
...
...
@@ -18,7 +18,6 @@
#undef MYSQL_SERVER
#include "client_priv.h"
#include <time.h>
#include <assert.h>
#include "log_event.h"
#define BIN_LOG_HEADER_SIZE 4
...
...
client/mysqldump.c
View file @
0276d38f
...
...
@@ -43,7 +43,6 @@
#include <my_sys.h>
#include <m_string.h>
#include <m_ctype.h>
#include <assert.h>
#include "client_priv.h"
#include "mysql.h"
...
...
heap/hp_hash.c
View file @
0276d38f
...
...
@@ -18,7 +18,6 @@
#include "heapdef.h"
#include <m_ctype.h>
#include <assert.h>
...
...
include/m_string.h
View file @
0276d38f
...
...
@@ -123,7 +123,6 @@ extern void bmove_align(gptr dst,const gptr src,uint len);
#endif
#ifdef HAVE_purify
#include <assert.h>
#define memcpy_overlap(A,B,C) \
DBUG_ASSERT((A) <= (B) || ((B)+(C)) <= (A)); \
bmove((byte*) (A),(byte*) (B),(size_t) (C));
...
...
include/my_dbug.h
View file @
0276d38f
...
...
@@ -16,6 +16,7 @@
#ifndef _dbug_h
#define _dbug_h
#include <assert.h>
#ifdef __cplusplus
extern
"C"
{
#endif
...
...
libmysql/libmysql.c
View file @
0276d38f
...
...
@@ -27,7 +27,6 @@
#include <sys/stat.h>
#include <signal.h>
#include <time.h>
#include <assert.h>
/* for DBUG_ASSERT() */
#ifdef HAVE_PWD_H
#include <pwd.h>
#endif
...
...
myisam/ftdefs.h
View file @
0276d38f
...
...
@@ -22,7 +22,6 @@
#include <m_ctype.h>
#include <my_tree.h>
#include <queues.h>
#include <assert.h>
#define true_word_char(s,X) (my_isalnum(s,X) || (X)=='_')
#define misc_word_char(X) ((X)=='\'')
...
...
myisam/mi_delete.c
View file @
0276d38f
...
...
@@ -18,7 +18,6 @@
#include "fulltext.h"
#include "rt_index.h"
#include <assert.h>
static
int
d_search
(
MI_INFO
*
info
,
MI_KEYDEF
*
keyinfo
,
uint
comp_flag
,
uchar
*
key
,
uint
key_length
,
my_off_t
page
,
uchar
*
anc_buff
);
...
...
myisam/mi_dynrec.c
View file @
0276d38f
...
...
@@ -25,7 +25,6 @@
*/
#include "myisamdef.h"
#include <assert.h>
/* Enough for comparing if number is zero */
static
char
zero_string
[]
=
{
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
};
...
...
myisam/mi_key.c
View file @
0276d38f
...
...
@@ -19,7 +19,6 @@
#include "myisamdef.h"
#include "m_ctype.h"
#include "sp_defs.h"
#include <assert.h>
#ifdef HAVE_IEEEFP_H
#include <ieeefp.h>
#endif
...
...
myisam/mi_open.c
View file @
0276d38f
...
...
@@ -20,7 +20,6 @@
#include "sp_defs.h"
#include "rt_index.h"
#include <m_ctype.h>
#include <assert.h>
#if defined(MSDOS) || defined(__WIN__)
#ifdef __WIN__
...
...
myisam/mi_search.c
View file @
0276d38f
...
...
@@ -18,7 +18,6 @@
#include "fulltext.h"
#include "m_ctype.h"
#include <assert.h>
static
my_bool
_mi_get_prev_key
(
MI_INFO
*
info
,
MI_KEYDEF
*
keyinfo
,
uchar
*
page
,
uchar
*
key
,
uchar
*
keypos
,
...
...
myisam/mi_write.c
View file @
0276d38f
...
...
@@ -18,7 +18,6 @@
#include "fulltext.h"
#include "rt_index.h"
#include <assert.h>
#define MAX_POINTER_LENGTH 8
...
...
mysys/mf_iocache.c
View file @
0276d38f
...
...
@@ -55,7 +55,6 @@ TODO:
#include "mysys_err.h"
static
void
my_aiowait
(
my_aio_result
*
result
);
#endif
#include <assert.h>
#include <errno.h>
#ifdef THREAD
...
...
mysys/mf_iocache2.c
View file @
0276d38f
...
...
@@ -23,7 +23,6 @@
#include <m_string.h>
#include <stdarg.h>
#include <m_ctype.h>
#include <assert.h>
my_off_t
my_b_append_tell
(
IO_CACHE
*
info
)
{
...
...
mysys/mf_keycache.c
View file @
0276d38f
...
...
@@ -44,7 +44,6 @@
#include "my_static.h"
#include <m_string.h>
#include <errno.h>
#include <assert.h>
#include <stdarg.h>
/*
...
...
mysys/my_bitmap.c
View file @
0276d38f
...
...
@@ -35,7 +35,6 @@
#include "mysys_priv.h"
#include <my_bitmap.h>
#include <assert.h>
#include <m_string.h>
...
...
mysys/my_gethostbyname.c
View file @
0276d38f
...
...
@@ -18,7 +18,6 @@
/* Thread safe version of gethostbyname_r() */
#include "mysys_priv.h"
#include <assert.h>
#if !defined(MSDOS) && !defined(__WIN__)
#include <netdb.h>
#endif
...
...
mysys/my_getopt.c
View file @
0276d38f
...
...
@@ -18,7 +18,6 @@
#include <m_string.h>
#include <stdlib.h>
#include <my_getopt.h>
#include <assert.h>
#include <my_sys.h>
#include <mysys_err.h>
...
...
mysys/my_pthread.c
View file @
0276d38f
...
...
@@ -23,7 +23,6 @@
#include <signal.h>
#include <m_string.h>
#include <thr_alarm.h>
#include <assert.h>
#if (defined(__BSD__) || defined(_BSDI_VERSION)) && !defined(HAVE_mit_thread)
#define SCHED_POLICY SCHED_RR
...
...
mysys/my_seek.c
View file @
0276d38f
...
...
@@ -15,7 +15,6 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include "mysys_priv.h"
#include <assert.h>
/* Seek to position in file */
/*ARGSUSED*/
...
...
mysys/rijndael.c
View file @
0276d38f
...
...
@@ -26,7 +26,6 @@
*/
#include <my_global.h>
#include <assert.h>
#include "rijndael.h"
/*
...
...
mysys/thr_alarm.c
View file @
0276d38f
...
...
@@ -27,7 +27,6 @@
#include <m_string.h>
#include <queues.h>
#include "thr_alarm.h"
#include <assert.h>
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
/* AIX needs this for fd_set */
...
...
sql-common/client.c
View file @
0276d38f
...
...
@@ -63,7 +63,6 @@ my_bool net_flush(NET *net);
#include "mysqld_error.h"
#include "errmsg.h"
#include <violite.h>
#include <assert.h>
#if defined(THREAD) && !defined(__WIN__)
#include <my_pthread.h>
/* because of signal() */
#endif
/* defined(THREAD) && !defined(__WIN__) */
...
...
sql/mysql_priv.h
View file @
0276d38f
...
...
@@ -15,7 +15,6 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <my_global.h>
#include <assert.h>
#include <mysql_version.h>
#include <mysql_embed.h>
#include <my_sys.h>
...
...
sql/sql_string.cc
View file @
0276d38f
...
...
@@ -24,7 +24,6 @@
#include <my_sys.h>
#include <m_string.h>
#include <m_ctype.h>
#include <assert.h>
#ifdef HAVE_FCONVERT
#include <floatingpoint.h>
#endif
...
...
strings/ctype-simple.c
View file @
0276d38f
...
...
@@ -20,7 +20,6 @@
#include <errno.h>
#include "stdarg.h"
#include "assert.h"
int
my_strnxfrm_simple
(
CHARSET_INFO
*
cs
,
...
...
strings/ctype-ucs2.c
View file @
0276d38f
...
...
@@ -312,7 +312,6 @@ static int my_mbcharlen_ucs2(CHARSET_INFO *cs __attribute__((unused)) ,
#include <m_string.h>
#include <stdarg.h>
#include <assert.h>
static
int
my_vsnprintf_ucs2
(
char
*
dst
,
uint
n
,
const
char
*
fmt
,
va_list
ap
)
{
...
...
strings/my_vsnprintf.c
View file @
0276d38f
...
...
@@ -18,7 +18,6 @@
#include <m_string.h>
#include <stdarg.h>
#include <m_ctype.h>
#include <assert.h>
/*
Limited snprintf() implementations
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment