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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
b79da888
Commit
b79da888
authored
Jun 07, 2001
by
monty@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed innodb_unix_file_flush_method -> innodb_flush_method
Cleaned up error messages.
parent
f614f19e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
9 deletions
+15
-9
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-1
mysql-test/mysql-test-run.sh
mysql-test/mysql-test-run.sh
+6
-0
sql/ha_innobase.cc
sql/ha_innobase.cc
+6
-7
sql/mysqld.cc
sql/mysqld.cc
+2
-1
No files found.
BitKeeper/etc/logging_ok
View file @
b79da888
m
ikef@nslinuxw4.bedford.progress.com
m
onty@hundin.mysql.fi
mysql-test/mysql-test-run.sh
View file @
b79da888
...
...
@@ -143,6 +143,10 @@ while test $# -gt 0; do
EXTRA_MYSQL_TEST_OPT
=
"
$EXTRA_MYSQL_TEST_OPT
$1
"
SLEEP_TIME
=
`
$ECHO
"
$1
"
|
$SED
-e
"s;--sleep=;;"
`
;;
--mysqld
=
*
)
TMP
=
`
$ECHO
"
$1
"
|
$SED
-e
"s;--mysqld-=;"
`
EXTRA_MYSQL_TEST_OPT
=
"
$EXTRA_MYSQL_TEST_OPT
$TMP
"
;;
--gcov
)
if
[
x
$BINARY_DIST
=
x1
]
;
then
$ECHO
"Cannot do coverage test without the source - please use source dist"
...
...
@@ -158,12 +162,14 @@ while test $# -gt 0; do
$ECHO
"Note: you will get more meaningful output on a source distribution compiled with debugging option when running tests with -gdb option"
fi
DO_GDB
=
1
USE_RUNNING_SERVER
=
""
;;
--ddd
)
if
[
x
$BINARY_DIST
=
x1
]
;
then
$ECHO
"Note: you will get more meaningful output on a source distribution compiled with debugging option when running tests with -gdb option"
fi
DO_DDD
=
1
USE_RUNNING_SERVER
=
""
;;
--skip-
*
)
EXTRA_MASTER_MYSQLD_OPT
=
"
$EXTRA_MASTER_MYSQLD_OPT
$1
"
...
...
sql/ha_innobase.cc
View file @
b79da888
...
...
@@ -679,7 +679,7 @@ ha_innobase::bas_ext() const
/* out: file extension strings, currently not
used */
{
static
const
char
*
ext
[]
=
{
".InnoDB
_table_inside_tablespace
"
,
NullS
};
static
const
char
*
ext
[]
=
{
".InnoDB"
,
NullS
};
return
(
ext
);
}
...
...
@@ -779,12 +779,11 @@ ha_innobase::open(
if
(
NULL
==
(
ib_table
=
dict_table_get
(
norm_name
,
NULL
)))
{
fprintf
(
stderr
,
"InnoDB: Cannot find table %s from the internal
\n
"
"InnoDB: data dictionary of InnoDB though the .frm file
\n
"
"InnoDB: for the table exists. Maybe you have deleted
\n
"
"InnoDB: and created again an InnoDB database but
\n
"
"InnoDB: forgotten to delete the corresponding
\n
"
"InnoDB: .frm files of old InnoDB tables?
\n
"
,
fprintf
(
stderr
,
"\
Cannot find table %s from the internal data dictionary
\n
\
of InnoDB though the .frm file for the table exists. Maybe you have deleted
\n
\
and created again an InnoDB database but forgotten to delete the
\n
\
corresponding .frm files of old InnoDB tables?
\n
"
,
norm_name
);
free_share
(
share
);
...
...
sql/mysqld.cc
View file @
b79da888
...
...
@@ -2796,7 +2796,7 @@ struct show_var_st init_vars[]= {
{
"innodb_log_arch_dir"
,
(
char
*
)
&
innobase_log_arch_dir
,
SHOW_CHAR_PTR
},
{
"innodb_log_archive"
,
(
char
*
)
&
innobase_log_archive
,
SHOW_MY_BOOL
},
{
"innodb_log_group_home_dir"
,
(
char
*
)
&
innobase_log_group_home_dir
,
SHOW_CHAR_PTR
},
{
"innodb_
unix_file_flush_method"
,
(
char
*
)
&
innobase_unix_file_flush_method
,
SHOW_CHAR_PTR
},
{
"innodb_
flush_method"
,
(
char
*
)
&
innobase_unix_file_flush_method
,
SHOW_CHAR_PTR
},
#endif
{
"interactive_timeout"
,
(
char
*
)
&
net_interactive_timeout
,
SHOW_LONG
},
{
"join_buffer_size"
,
(
char
*
)
&
join_buff_size
,
SHOW_LONG
},
...
...
@@ -3073,6 +3073,7 @@ static void usage(void)
puts
(
"\
--innodb_data_home_dir=dir The common part for Innodb table spaces
\n
\
--innodb_data_file_path=dir Path to individual files and their sizes
\n
\
--innodb_flush_method=# Which method to flush data
\n
\
--innodb_flush_log_at_trx_commit[=#]
\n
\
Set to 0 if you don't want to flush logs
\n
\
--innodb_log_arch_dir=dir Where full logs should be archived
\n
\
...
...
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