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
c7e85ef9
Commit
c7e85ef9
authored
Nov 10, 2004
by
monty@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More debugging
Print position in normal log for Binlog dump
parent
e9d9ca83
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
85 additions
and
33 deletions
+85
-33
dbug/dbug.c
dbug/dbug.c
+41
-15
include/my_dbug.h
include/my_dbug.h
+3
-0
sql/field.cc
sql/field.cc
+8
-2
sql/log.cc
sql/log.cc
+23
-9
sql/mysqld.cc
sql/mysqld.cc
+1
-1
sql/slave.cc
sql/slave.cc
+1
-1
sql/sql_class.h
sql/sql_class.h
+1
-1
sql/sql_parse.cc
sql/sql_parse.cc
+7
-4
No files found.
dbug/dbug.c
View file @
c7e85ef9
...
...
@@ -227,14 +227,15 @@ static my_bool init_done = FALSE; /* Set to TRUE when initialization done */
static
struct
state
*
stack
=
0
;
typedef
struct
st_code_state
{
int
lineno
;
/* Current debugger output line number */
int
level
;
/* Current function nesting level */
const
char
*
func
;
/* Name of current user function */
const
char
*
file
;
/* Name of current user file */
char
**
framep
;
/* Pointer to current frame */
int
jmplevel
;
/* Remember nesting level at setjmp () */
const
char
*
jmpfunc
;
/* Remember current function for setjmp */
const
char
*
jmpfile
;
/* Remember current file for setjmp */
int
lineno
;
/* Current debugger output line number */
int
level
;
/* Current function nesting level */
int
disable_output
;
/* Set to it if output is disabled */
int
jmplevel
;
/* Remember nesting level at setjmp () */
/*
* The following variables are used to hold the state information
...
...
@@ -247,8 +248,8 @@ typedef struct st_code_state {
*/
uint
u_line
;
/* User source code line number */
const
char
*
u_keyword
;
/* Keyword for current macro */
int
locked
;
/* If locked with _db_lock_file */
const
char
*
u_keyword
;
/* Keyword for current macro */
}
CODE_STATE
;
/* Parse a debug command string */
...
...
@@ -370,8 +371,10 @@ static CODE_STATE *code_state(void)
#define code_state() (&static_code_state)
#define pthread_mutex_lock(A) {}
#define pthread_mutex_unlock(A) {}
static
CODE_STATE
static_code_state
=
{
0
,
0
,
"?func"
,
"?file"
,
NULL
,
0
,
NULL
,
NULL
,
0
,
"?"
,
0
};
static
CODE_STATE
static_code_state
=
{
"?func"
,
"?file"
,
NULL
,
NullS
,
NullS
,
0
,
0
,
0
,
0
,
0
,
0
,
NullS
};
#endif
...
...
@@ -728,9 +731,12 @@ char ***_sframep_ __attribute__((unused)))
if
(
DoProfile
())
{
long
stackused
;
if
(
*
state
->
framep
==
NULL
)
{
if
(
*
state
->
framep
==
NULL
)
{
stackused
=
0
;
}
else
{
}
else
{
stackused
=
((
long
)(
*
state
->
framep
))
-
((
long
)(
state
->
framep
));
stackused
=
stackused
>
0
?
stackused
:
-
stackused
;
}
...
...
@@ -744,7 +750,7 @@ char ***_sframep_ __attribute__((unused)))
(
void
)
fflush
(
_db_pfp_
);
}
#endif
if
(
DoTrace
(
state
))
if
(
DoTrace
(
state
))
{
if
(
!
state
->
locked
)
pthread_mutex_lock
(
&
THR_LOCK_dbug
);
...
...
@@ -754,7 +760,7 @@ char ***_sframep_ __attribute__((unused)))
dbug_flush
(
state
);
/* This does a unlock */
}
#ifdef SAFEMALLOC
if
(
stack
->
flags
&
SANITY_CHECK_ON
)
if
(
stack
->
flags
&
SANITY_CHECK_ON
&&
!
state
->
disable_output
)
if
(
_sanity
(
_file_
,
_line_
))
/* Check of safemalloc */
stack
->
flags
&=
~
SANITY_CHECK_ON
;
#endif
...
...
@@ -809,9 +815,11 @@ uint *_slevel_)
else
{
#ifdef SAFEMALLOC
if
(
stack
->
flags
&
SANITY_CHECK_ON
)
if
(
stack
->
flags
&
SANITY_CHECK_ON
&&
!
state
->
disable_output
)
{
if
(
_sanity
(
*
_sfile_
,
_line_
))
stack
->
flags
&=
~
SANITY_CHECK_ON
;
}
#endif
#ifndef THREAD
if
(
DoProfile
())
...
...
@@ -954,7 +962,6 @@ uint length)
int
pos
;
char
dbuff
[
90
];
CODE_STATE
*
state
;
/* Sasha: pre-my_thread_init() safety */
if
(
!
(
state
=
code_state
()))
return
;
...
...
@@ -994,6 +1001,25 @@ uint length)
}
}
/*
Enable/Disable output for this thread
SYNOPSIS
_db_output_()
flag 1 = enable output, 0 = disable_output
*/
void
_db_output_
(
uint
flag
)
{
CODE_STATE
*
state
;
if
(
!
(
state
=
code_state
()))
return
;
state
->
disable_output
=
!
flag
;
}
/*
* FUNCTION
*
...
...
@@ -1159,7 +1185,7 @@ static BOOLEAN DoTrace (CODE_STATE *state)
{
reg2
BOOLEAN
trace
=
FALSE
;
if
(
TRACING
&&
if
(
TRACING
&&
!
state
->
disable_output
&&
state
->
level
<=
stack
->
maxdepth
&&
InList
(
stack
->
functions
,
state
->
func
)
&&
InList
(
stack
->
processes
,
_db_process_
))
...
...
@@ -1195,7 +1221,7 @@ static BOOLEAN DoProfile ()
state
=
code_state
();
profile
=
FALSE
;
if
(
PROFILING
&&
if
(
PROFILING
&&
!
state
->
disable_output
&&
state
->
level
<=
stack
->
maxdepth
&&
InList
(
stack
->
p_functions
,
state
->
func
)
&&
InList
(
stack
->
processes
,
_db_process_
))
...
...
@@ -1242,7 +1268,7 @@ const char *keyword)
if
(
!
(
state
=
code_state
()))
return
FALSE
;
result
=
FALSE
;
if
(
DEBUGGING
&&
if
(
DEBUGGING
&&
!
state
->
disable_output
&&
state
->
level
<=
stack
->
maxdepth
&&
InList
(
stack
->
functions
,
state
->
func
)
&&
InList
(
stack
->
keywords
,
keyword
)
&&
...
...
include/my_dbug.h
View file @
c7e85ef9
...
...
@@ -38,6 +38,7 @@ extern void _db_pargs_(uint _line_,const char *keyword);
extern
void
_db_doprnt_
_VARARGS
((
const
char
*
format
,...));
extern
void
_db_dump_
(
uint
_line_
,
const
char
*
keyword
,
const
char
*
memory
,
uint
length
);
extern
void
_db_output_
();
extern
void
_db_lock_file
();
extern
void
_db_unlock_file
();
...
...
@@ -66,6 +67,7 @@ extern void _db_unlock_file();
#define DEBUGGER_ON _no_db_=0
#define DBUG_LOCK_FILE { _db_lock_file(); }
#define DBUG_UNLOCK_FILE { _db_unlock_file(); }
#define DBUG_OUTPUT(A) { _db_output_(A); }
#define DBUG_ASSERT(A) assert(A)
#else
/* No debugger */
...
...
@@ -86,6 +88,7 @@ extern void _db_unlock_file();
#define DEBUGGER_ON
#define DBUG_LOCK_FILE
#define DBUG_UNLOCK_FILE
#define DBUG_OUTPUT(A)
#define DBUG_ASSERT(A) {}
#endif
#ifdef __cplusplus
...
...
sql/field.cc
View file @
c7e85ef9
...
...
@@ -5941,8 +5941,14 @@ Field *make_field(char *ptr, uint32 field_length,
if
(
f_is_alpha
(
pack_flag
))
{
if
(
!
f_is_packed
(
pack_flag
))
return
new
Field_string
(
ptr
,
field_length
,
null_pos
,
null_bit
,
unireg_check
,
field_name
,
table
,
field_charset
);
{
if
(
field_type
==
FIELD_TYPE_STRING
||
field_type
==
FIELD_TYPE_VAR_STRING
)
return
new
Field_string
(
ptr
,
field_length
,
null_pos
,
null_bit
,
unireg_check
,
field_name
,
table
,
field_charset
);
return
0
;
// Error
}
uint
pack_length
=
calc_pack_length
((
enum_field_types
)
f_packtype
(
pack_flag
),
...
...
sql/log.cc
View file @
c7e85ef9
...
...
@@ -1703,6 +1703,8 @@ bool MYSQL_LOG::write(THD *thd,const char *query, uint query_length,
time_t
current_time
;
if
(
!
is_open
())
return
0
;
DBUG_ENTER
(
"MYSQL_LOG::write"
);
VOID
(
pthread_mutex_lock
(
&
LOCK_log
));
if
(
is_open
())
{
// Safety agains reopen
...
...
@@ -1712,7 +1714,7 @@ bool MYSQL_LOG::write(THD *thd,const char *query, uint query_length,
if
(
!
(
thd
->
options
&
OPTION_UPDATE_LOG
))
{
VOID
(
pthread_mutex_unlock
(
&
LOCK_log
));
return
0
;
DBUG_RETURN
(
0
)
;
}
if
(
!
(
specialflag
&
SPECIAL_SHORT_LOG_FORMAT
)
||
query_start_arg
)
{
...
...
@@ -1812,7 +1814,7 @@ bool MYSQL_LOG::write(THD *thd,const char *query, uint query_length,
}
}
VOID
(
pthread_mutex_unlock
(
&
LOCK_log
));
return
error
;
DBUG_RETURN
(
error
)
;
}
...
...
@@ -1832,16 +1834,19 @@ bool MYSQL_LOG::write(THD *thd,const char *query, uint query_length,
THD::enter_cond() (see NOTES in sql_class.h).
*/
void
MYSQL_LOG
::
wait_for_update
(
THD
*
thd
,
bool
master_or_slave
)
void
MYSQL_LOG
::
wait_for_update
(
THD
*
thd
,
bool
master_or_slave
)
{
const
char
*
old_msg
=
thd
->
enter_cond
(
&
update_cond
,
&
LOCK_log
,
master_or_slave
?
"Has read all relay log; waiting for \
the slave I/O thread to update it"
:
"Has sent all binlog to slave; \
waiting for binlog to be updated"
);
const
char
*
old_msg
;
DBUG_ENTER
(
"wait_for_update"
);
old_msg
=
thd
->
enter_cond
(
&
update_cond
,
&
LOCK_log
,
master_or_slave
?
"Has read all relay log; waiting for the slave I/O "
"thread to update it"
:
"Has sent all binlog to slave; waiting for binlog "
"to be updated"
);
pthread_cond_wait
(
&
update_cond
,
&
LOCK_log
);
thd
->
exit_cond
(
old_msg
);
DBUG_VOID_RETURN
;
}
...
...
@@ -2198,6 +2203,15 @@ void MYSQL_LOG::report_pos_in_innodb()
DBUG_VOID_RETURN
;
}
void
MYSQL_LOG
::
signal_update
()
{
DBUG_ENTER
(
"MYSQL_LOG::signal_update"
);
pthread_cond_broadcast
(
&
update_cond
);
DBUG_VOID_RETURN
;
}
#ifdef __NT__
void
print_buffer_to_nt_eventlog
(
enum
loglevel
level
,
char
*
buff
,
uint
length
,
int
buffLen
)
...
...
sql/mysqld.cc
View file @
c7e85ef9
...
...
@@ -540,7 +540,7 @@ static void close_connections(void)
struct
timespec
abstime
;
int
error
;
LINT_INIT
(
error
);
DBUG_PRINT
(
"info"
,(
"Waiting for select
_
thread"
));
DBUG_PRINT
(
"info"
,(
"Waiting for select
thread"
));
#ifndef DONT_USE_THR_ALARM
if
(
pthread_kill
(
select_thread
,
THR_CLIENT_ALARM
))
...
...
sql/slave.cc
View file @
c7e85ef9
...
...
@@ -2632,7 +2632,7 @@ static int request_dump(MYSQL* mysql, MASTER_INFO* mi,
DBUG_ENTER
(
"request_dump"
);
// TODO if big log files: Change next to int8store()
int4store
(
buf
,
(
long
long
)
mi
->
master_log_pos
);
int4store
(
buf
,
(
u
long
)
mi
->
master_log_pos
);
int2store
(
buf
+
4
,
binlog_flags
);
int4store
(
buf
+
6
,
server_id
);
len
=
(
uint
)
strlen
(
logname
);
...
...
sql/sql_class.h
View file @
c7e85ef9
...
...
@@ -131,7 +131,7 @@ class MYSQL_LOG
DBUG_VOID_RETURN
;
}
void
set_max_size
(
ulong
max_size_arg
);
void
signal_update
()
{
pthread_cond_broadcast
(
&
update_cond
);}
void
signal_update
()
;
void
wait_for_update
(
THD
*
thd
,
bool
master_or_slave
);
void
set_need_start_event
()
{
need_start_event
=
1
;
}
void
init
(
enum_log_type
log_type_arg
,
...
...
sql/sql_parse.cc
View file @
c7e85ef9
...
...
@@ -1610,15 +1610,15 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
#ifndef EMBEDDED_LIBRARY
case
COM_BINLOG_DUMP
:
{
ulong
pos
;
ushort
flags
;
uint32
slave_server_id
;
statistic_increment
(
com_other
,
&
LOCK_status
);
thd
->
slow_command
=
TRUE
;
if
(
check_global_access
(
thd
,
REPL_SLAVE_ACL
))
break
;
mysql_log
.
write
(
thd
,
command
,
0
);
ulong
pos
;
ushort
flags
;
uint32
slave_server_id
;
/* TODO: The following has to be changed to an 8 byte integer */
pos
=
uint4korr
(
packet
);
flags
=
uint2korr
(
packet
+
4
);
...
...
@@ -1626,6 +1626,9 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
if
((
slave_server_id
=
uint4korr
(
packet
+
6
)))
// mysqlbinlog.server_id==0
kill_zombie_dump_threads
(
slave_server_id
);
thd
->
server_id
=
slave_server_id
;
mysql_log
.
write
(
thd
,
command
,
"Log: '%s' Pos: %ld"
,
packet
+
10
,
(
long
)
pos
);
mysql_binlog_send
(
thd
,
thd
->
strdup
(
packet
+
10
),
(
my_off_t
)
pos
,
flags
);
unregister_slave
(
thd
,
1
,
1
);
// fake COM_QUIT -- if we get here, the thread needs to terminate
...
...
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