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
7ce6170c
Commit
7ce6170c
authored
Jan 21, 2007
by
tsmith@siva.hindu.god
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Applied innodb-5.0-ss1230 snapshot
Fixes: - Bug #25596:
parent
205f7a05
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
innobase/dict/dict0dict.c
innobase/dict/dict0dict.c
+1
-1
sql/ha_innodb.h
sql/ha_innodb.h
+1
-1
No files found.
innobase/dict/dict0dict.c
View file @
7ce6170c
...
...
@@ -28,7 +28,7 @@ Created 1/8/1996 Heikki Tuuri
#include "rem0cmp.h"
/* Implement isspace() in a locale-independent way. (Bug #24299) */
#define ib_isspace(c)
strchr(" \v\f\t\r\n", c
)
#define ib_isspace(c)
((char) (c) && strchr(" \v\f\t\r\n", c)
)
dict_sys_t
*
dict_sys
=
NULL
;
/* the dictionary system */
...
...
sql/ha_innodb.h
View file @
7ce6170c
...
...
@@ -215,7 +215,7 @@ extern my_bool innobase_log_archive,
innobase_use_large_pages
,
innobase_use_native_aio
,
innobase_file_per_table
,
innobase_locks_unsafe_for_binlog
,
innobase_rollback_on_timeout
,
innobase_rollback_on_timeout
,
innobase_create_status_file
;
extern
my_bool
innobase_very_fast_shutdown
;
/* set this to 1 just before
calling innobase_end() if you want
...
...
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