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
f8d44429
Commit
f8d44429
authored
Sep 20, 2002
by
heikki@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
srv0srv.h, srv0srv.c, row0mysql.c:
Put back a change unintentionally removed in the last 2 pushes
parent
55807d95
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
innobase/include/srv0srv.h
innobase/include/srv0srv.h
+1
-1
innobase/row/row0mysql.c
innobase/row/row0mysql.c
+2
-2
innobase/srv/srv0srv.c
innobase/srv/srv0srv.c
+1
-1
No files found.
innobase/include/srv0srv.h
View file @
f8d44429
...
...
@@ -53,7 +53,7 @@ extern ulint srv_n_log_files;
extern
ulint
srv_log_file_size
;
extern
ibool
srv_log_archive_on
;
extern
ulint
srv_log_buffer_size
;
extern
ibool
srv_flush_log_at_trx_commit
;
extern
ulint
srv_flush_log_at_trx_commit
;
extern
byte
srv_latin1_ordering
[
256
];
/* The sort order table of the latin1
character set */
...
...
innobase/row/row0mysql.c
View file @
f8d44429
...
...
@@ -1186,7 +1186,7 @@ row_create_table_for_mysql(
ut_ad
(
trx
->
mysql_thread_id
==
os_thread_get_curr_id
());
ut_ad
(
mutex_own
(
&
(
dict_sys
->
mutex
)));
if
(
srv_created_new_raw
||
srv_force_recovery
)
{
if
(
srv_created_new_raw
)
{
fprintf
(
stderr
,
"InnoDB: A new raw disk partition was initialized or
\n
"
"InnoDB: innodb_force_recovery is on: we do not allow
\n
"
...
...
@@ -1707,7 +1707,7 @@ row_drop_table_for_mysql(
ut_ad
(
trx
->
mysql_thread_id
==
os_thread_get_curr_id
());
ut_a
(
name
!=
NULL
);
if
(
srv_created_new_raw
||
srv_force_recovery
)
{
if
(
srv_created_new_raw
)
{
fprintf
(
stderr
,
"InnoDB: A new raw disk partition was initialized or
\n
"
"InnoDB: innodb_force_recovery is on: we do not allow
\n
"
...
...
innobase/srv/srv0srv.c
View file @
f8d44429
...
...
@@ -94,7 +94,7 @@ char** srv_log_group_home_dirs = NULL;
ulint
srv_n_log_groups
=
ULINT_MAX
;
ulint
srv_n_log_files
=
ULINT_MAX
;
ulint
srv_log_file_size
=
ULINT_MAX
;
/* size in database pages */
ibool
srv_log_archive_on
=
TRUE
;
ulint
srv_log_archive_on
=
1
;
ulint
srv_log_buffer_size
=
ULINT_MAX
;
/* size in database pages */
ibool
srv_flush_log_at_trx_commit
=
TRUE
;
...
...
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