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
7866b723
Commit
7866b723
authored
Mar 31, 2020
by
Monty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated client and server to use new binary names in --debug traces
parent
e3130d22
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
client/mysql.cc
client/mysql.cc
+1
-1
client/mysql_upgrade.c
client/mysql_upgrade.c
+1
-1
client/mysqlbinlog.cc
client/mysqlbinlog.cc
+1
-1
client/mysqldump.c
client/mysqldump.c
+1
-1
client/mysqlslap.c
client/mysqlslap.c
+1
-1
sql/mysqld.cc
sql/mysqld.cc
+2
-2
No files found.
client/mysql.cc
View file @
7866b723
...
...
@@ -205,7 +205,7 @@ static CHARSET_INFO *charset_info= &my_charset_latin1;
#include "sslopt-vars.h"
const
char
*
default_dbug_option
=
"d:t:o,/tmp/m
ysql
.trace"
;
const
char
*
default_dbug_option
=
"d:t:o,/tmp/m
ariadb
.trace"
;
void
tee_fprintf
(
FILE
*
file
,
const
char
*
fmt
,
...);
void
tee_fputs
(
const
char
*
s
,
FILE
*
file
);
...
...
client/mysql_upgrade.c
View file @
7866b723
...
...
@@ -62,7 +62,7 @@ static my_bool tty_password= 0;
static
char
opt_tmpdir
[
FN_REFLEN
]
=
""
;
#ifndef DBUG_OFF
static
char
*
default_dbug_option
=
(
char
*
)
"d:t:O,/tmp/m
ysql_
upgrade.trace"
;
static
char
*
default_dbug_option
=
(
char
*
)
"d:t:O,/tmp/m
ariadb-
upgrade.trace"
;
#endif
static
char
**
defaults_argv
;
...
...
client/mysqlbinlog.cc
View file @
7866b723
...
...
@@ -97,7 +97,7 @@ static char *result_file_name= 0;
static
const
char
*
output_prefix
=
""
;
#ifndef DBUG_OFF
static
const
char
*
default_dbug_option
=
"d:t:o,/tmp/m
ysql
binlog.trace"
;
static
const
char
*
default_dbug_option
=
"d:t:o,/tmp/m
ariadb-
binlog.trace"
;
const
char
*
current_dbug_option
=
default_dbug_option
;
#endif
static
const
char
*
load_groups
[]
=
...
...
client/mysqldump.c
View file @
7866b723
...
...
@@ -187,7 +187,7 @@ static const char *mysql_universal_client_charset=
MYSQL_UNIVERSAL_CLIENT_CHARSET
;
static
char
*
default_charset
;
static
CHARSET_INFO
*
charset_info
=
&
my_charset_latin1
;
const
char
*
default_dbug_option
=
"d:t:o,/tmp/m
ysql
dump.trace"
;
const
char
*
default_dbug_option
=
"d:t:o,/tmp/m
ariadb-
dump.trace"
;
/* have we seen any VIEWs during table scanning? */
my_bool
seen_views
=
0
;
const
char
*
compatible_mode_names
[]
=
...
...
client/mysqlslap.c
View file @
7866b723
...
...
@@ -167,7 +167,7 @@ static char *create_string;
uint
*
concurrency
;
static
char
mysql_charsets_dir
[
FN_REFLEN
+
1
];
const
char
*
default_dbug_option
=
"d:t:o,/tmp/m
ysql
slap.trace"
;
const
char
*
default_dbug_option
=
"d:t:o,/tmp/m
ariadb-
slap.trace"
;
const
char
*
opt_csv_str
;
File
csv_file
;
...
...
sql/mysqld.cc
View file @
7866b723
...
...
@@ -7881,8 +7881,8 @@ static int mysql_init_variables(void)
/* Variables that depends on compile options */
#ifndef DBUG_OFF
default_dbug_option
=
IF_WIN
(
"d:t:i:O,
\\
m
ysql
d.trace"
,
"d:t:i:o,/tmp/m
ysql
d.trace"
);
default_dbug_option
=
IF_WIN
(
"d:t:i:O,
\\
m
ariadb
d.trace"
,
"d:t:i:o,/tmp/m
ariadb
d.trace"
);
current_dbug_option
=
default_dbug_option
;
#endif
opt_error_log
=
IF_WIN
(
1
,
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