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
21034796
Commit
21034796
authored
Mar 17, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-4.0
into narttu.mysql.fi:/my/mysql-4.0
parents
440cb76f
b1a78e2a
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
3 additions
and
5 deletions
+3
-5
include/Makefile.am
include/Makefile.am
+1
-1
include/my_dbug.h
include/my_dbug.h
+0
-0
include/my_global.h
include/my_global.h
+1
-1
libmysql/get_password.c
libmysql/get_password.c
+0
-1
libmysqld/lib_vio.c
libmysqld/lib_vio.c
+0
-1
sql/table.cc
sql/table.cc
+1
-1
No files found.
include/Makefile.am
View file @
21034796
...
...
@@ -16,7 +16,7 @@
# MA 02111-1307, USA
BUILT_SOURCES
=
mysql_version.h m_ctype.h my_config.h
pkginclude_HEADERS
=
dbug.h m_string.h my_sys.h my_list.h
\
pkginclude_HEADERS
=
my_
dbug.h m_string.h my_sys.h my_list.h
\
mysql.h mysql_com.h mysqld_error.h mysql_embed.h
\
my_semaphore.h my_pthread.h my_no_pthread.h raid.h
\
errmsg.h my_global.h my_net.h my_alloc.h
\
...
...
include/dbug.h
→
include/
my_
dbug.h
View file @
21034796
File moved
include/my_global.h
View file @
21034796
...
...
@@ -392,7 +392,7 @@ typedef unsigned short ushort;
#define DBUG_OFF
#endif
#include <dbug.h>
#include <
my_
dbug.h>
#define MIN_ARRAY_SIZE 0
/* Zero or One. Gcc allows zero*/
#define ASCII_BITS_USED 8
/* Bit char used */
...
...
libmysql/get_password.c
View file @
21034796
...
...
@@ -23,7 +23,6 @@
#include "mysql.h"
#include <m_string.h>
#include <m_ctype.h>
#include <dbug.h>
#if defined(HAVE_BROKEN_GETPASS) && !defined(HAVE_GETPASSPHRASE)
#undef HAVE_GETPASS
...
...
libmysqld/lib_vio.c
View file @
21034796
...
...
@@ -33,7 +33,6 @@
#include <my_sys.h>
#include <my_net.h>
#include <m_string.h>
#include <dbug.h>
#include <assert.h>
#ifndef __WIN__
...
...
sql/table.cc
View file @
21034796
...
...
@@ -1180,7 +1180,7 @@ bool check_table_name(const char *name, uint length)
}
}
#endif
if
(
*
name
==
'/'
||
*
name
==
FN_LIBCHAR
||
*
name
==
FN_EXTCHAR
)
if
(
*
name
==
'/'
||
*
name
==
'\\'
||
*
name
==
FN_EXTCHAR
)
return
1
;
name
++
;
}
...
...
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