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
1d63cac0
Commit
1d63cac0
authored
Oct 09, 2007
by
anozdrin/alik@station
Browse files
Options
Browse Files
Download
Plain Diff
Merge station.:/mnt/raid/alik/MySQL/devel/5.0-rt
into station.:/mnt/raid/alik/MySQL/devel/5.1-rt-merged
parents
437fdeaa
ef3bcaf3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
sql/mysql_priv.h
sql/mysql_priv.h
+0
-1
sql/sql_parse.cc
sql/sql_parse.cc
+4
-3
No files found.
sql/mysql_priv.h
View file @
1d63cac0
...
...
@@ -965,7 +965,6 @@ void init_update_queries(void);
void
free_max_user_conn
(
void
);
pthread_handler_t
handle_bootstrap
(
void
*
arg
);
bool
mysql_execute_command
(
THD
*
thd
);
bool
do_command
(
THD
*
thd
);
bool
dispatch_command
(
enum
enum_server_command
command
,
THD
*
thd
,
char
*
packet
,
uint
packet_length
);
void
log_slow_statement
(
THD
*
thd
);
...
...
sql/sql_parse.cc
View file @
1d63cac0
...
...
@@ -86,6 +86,7 @@ const char *xa_state_names[]={
"NON-EXISTING"
,
"ACTIVE"
,
"IDLE"
,
"PREPARED"
};
static
bool
do_command
(
THD
*
thd
);
static
void
unlock_locked_tables
(
THD
*
thd
)
{
...
...
@@ -681,12 +682,12 @@ bool do_command(THD *thd)
DBUG_PRINT
(
"info"
,(
"Got error %d reading command from socket %s"
,
net
->
error
,
vio_description
(
net
->
vio
)));
/* Check if we can continue without closing the connection */
if
(
net
->
error
!=
3
)
{
statistic_increment
(
aborted_threads
,
&
LOCK_status
);
DBUG_RETURN
(
TRUE
);
// We have to close it.
}
net_send_error
(
thd
,
net
->
last_errno
,
NullS
);
net
->
error
=
0
;
DBUG_RETURN
(
FALSE
);
...
...
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