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
7c2ff3c3
Commit
7c2ff3c3
authored
Nov 03, 2006
by
kent/mysqldev@suse9-x86.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sort.c:
Create block around DBUG_ENTER late in function
parent
6a28c436
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
myisam/sort.c
myisam/sort.c
+6
-2
No files found.
myisam/sort.c
View file @
7c2ff3c3
...
...
@@ -322,8 +322,12 @@ pthread_handler_decl(thr_find_all_keys,arg)
if
(
my_thread_init
())
goto
err
;
DBUG_ENTER
(
"thr_find_all_keys"
);
DBUG_PRINT
(
"enter"
,
(
"master: %d"
,
sort_param
->
master
));
{
/* Expands to declaration, create new block */
DBUG_ENTER
(
"thr_find_all_keys"
);
/* FIXME why no matching DBUG_RETURN ? */
DBUG_PRINT
(
"enter"
,
(
"master: %d"
,
sort_param
->
master
));
}
if
(
sort_param
->
sort_info
->
got_error
)
goto
err
;
...
...
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