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
487acad8
Commit
487acad8
authored
May 18, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/usr/local/bk/mysql-5.0
into mysql.com:/home/pem/work/mysql-5.0
parents
9bc998f2
49f58dec
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
sql/sql_test.cc
sql/sql_test.cc
+4
-2
No files found.
sql/sql_test.cc
View file @
487acad8
...
@@ -319,8 +319,10 @@ print_plan(JOIN* join, double read_time, double record_count,
...
@@ -319,8 +319,10 @@ print_plan(JOIN* join, double read_time, double record_count,
{
{
join_table
=
(
*
plan_nodes
);
join_table
=
(
*
plan_nodes
);
fputs
(
join_table
->
table
->
real_name
,
DBUG_FILE
);
fputs
(
join_table
->
table
->
real_name
,
DBUG_FILE
);
fprintf
(
DBUG_FILE
,
"(%u,%u,%u)"
,
fprintf
(
DBUG_FILE
,
"(%lu,%lu,%lu)"
,
join_table
->
found_records
,
join_table
->
records
,
join_table
->
read_time
);
(
ulong
)
join_table
->
found_records
,
(
ulong
)
join_table
->
records
,
(
ulong
)
join_table
->
read_time
);
fputc
(
' '
,
DBUG_FILE
);
fputc
(
' '
,
DBUG_FILE
);
}
}
fputc
(
'\n'
,
DBUG_FILE
);
fputc
(
'\n'
,
DBUG_FILE
);
...
...
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