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
1bd2953c
Commit
1bd2953c
authored
Apr 29, 2007
by
serg@sergbook.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compilation/test fixes
parent
10057bf4
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
7 deletions
+8
-7
include/my_global.h
include/my_global.h
+1
-1
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+4
-1
sql/mysql_priv.h
sql/mysql_priv.h
+2
-2
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+1
-3
No files found.
include/my_global.h
View file @
1bd2953c
...
@@ -466,7 +466,7 @@ C_MODE_END
...
@@ -466,7 +466,7 @@ C_MODE_END
#include <assert.h>
#include <assert.h>
/* an assert that works at compile-time. only for constant expression */
/* an assert that works at compile-time. only for constant expression */
#if
def __WIN
__
#if
ndef __GNUC
__
#define compile_time_assert(X) do { } while(0)
#define compile_time_assert(X) do { } while(0)
#else
#else
#define compile_time_assert(X) \
#define compile_time_assert(X) \
...
...
mysql-test/mysql-test-run.pl
View file @
1bd2953c
...
@@ -1361,7 +1361,10 @@ sub collect_mysqld_features () {
...
@@ -1361,7 +1361,10 @@ sub collect_mysqld_features () {
# --no-defaults and --skip-grant-tables are to avoid loading
# --no-defaults and --skip-grant-tables are to avoid loading
# system-wide configs and plugins
# system-wide configs and plugins
#
#
my
$list
=
`
$exe_mysqld
--no-defaults --datadir=
$default_vardir
--language=
$path_language
--skip-grant-tables --verbose --help
`;
# --datadir - for lowercase test to work
#
my
$tmp_datadir
=
$opt_vardir
||
$default_vardir
;
my
$list
=
`
$exe_mysqld
--no-defaults --datadir=
$tmp_datadir
--language=
$path_language
--skip-grant-tables --verbose --help
`;
foreach
my
$line
(
split
('
\
n
',
$list
))
foreach
my
$line
(
split
('
\
n
',
$list
))
{
{
...
...
sql/mysql_priv.h
View file @
1bd2953c
...
@@ -259,9 +259,9 @@ MY_LOCALE *my_locale_by_number(uint number);
...
@@ -259,9 +259,9 @@ MY_LOCALE *my_locale_by_number(uint number);
#define MAX_CONNECT_ERRORS 10 // errors before disabling host
#define MAX_CONNECT_ERRORS 10 // errors before disabling host
#ifdef __NETWARE__
#ifdef __NETWARE__
#define IF_NETWARE(A,B)
(A)
#define IF_NETWARE(A,B)
A
#else
#else
#define IF_NETWARE(A,B)
(B)
#define IF_NETWARE(A,B)
B
#endif
#endif
#if defined(__WIN__)
#if defined(__WIN__)
...
...
storage/innobase/handler/ha_innodb.cc
View file @
1bd2953c
...
@@ -7675,9 +7675,7 @@ static MYSQL_SYSVAR_ULONG(fast_shutdown, innobase_fast_shutdown,
...
@@ -7675,9 +7675,7 @@ static MYSQL_SYSVAR_ULONG(fast_shutdown, innobase_fast_shutdown,
NetWare can't close unclosed files, can't automatically kill remaining
NetWare can't close unclosed files, can't automatically kill remaining
threads, etc, so on this OS we disable the crash-like InnoDB shutdown.
threads, etc, so on this OS we disable the crash-like InnoDB shutdown.
*/
*/
#ifndef __NETWARE__
IF_NETWARE
(
""
,
" or 2 (fastest - crash-like)"
)
" or 2 (fastest - crash-like)"
#endif
"."
,
"."
,
NULL
,
NULL
,
1
,
0
,
IF_NETWARE
(
1
,
2
),
0
);
NULL
,
NULL
,
1
,
0
,
IF_NETWARE
(
1
,
2
),
0
);
...
...
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