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
ed990465
Commit
ed990465
authored
9 years ago
by
Sergey Vojtovich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed change_user and func_misc in embedded
First thread was getting id 0, while it is intended to get id 1.
parent
804fb401
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sql/mysqld.cc
sql/mysqld.cc
+2
-2
No files found.
sql/mysqld.cc
View file @
ed990465
...
...
@@ -555,7 +555,7 @@ ulong max_prepared_stmt_count;
statements.
*/
ulong
prepared_stmt_count
=
0
;
my_thread_id
global_thread_id
=
0
;
my_thread_id
global_thread_id
=
1
;
ulong
current_pid
;
ulong
slow_launch_threads
=
0
;
uint
sync_binlog_period
=
0
,
sync_relaylog_period
=
0
,
...
...
@@ -8744,7 +8744,7 @@ static int mysql_init_variables(void)
denied_connections
=
0
;
executed_events
=
0
;
global_query_id
=
1
;
global_thread_id
=
0
;
global_thread_id
=
1
;
strnmov
(
server_version
,
MYSQL_SERVER_VERSION
,
sizeof
(
server_version
)
-
1
);
threads
.
empty
();
thread_cache
.
empty
();
...
...
This diff is collapsed.
Click to expand it.
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