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
9ca3d9ea
Commit
9ca3d9ea
authored
Oct 02, 2015
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unused method
parent
e8daa418
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
12 deletions
+0
-12
sql/group_by_handler.h
sql/group_by_handler.h
+0
-3
storage/sequence/sequence.cc
storage/sequence/sequence.cc
+0
-9
No files found.
sql/group_by_handler.h
View file @
9ca3d9ea
...
...
@@ -118,9 +118,6 @@ class group_by_handler
/* End scanning */
virtual
int
end_scan
()
=
0
;
/* Information for optimizer (used by EXPLAIN) */
virtual
int
info
(
uint
flag
,
ha_statistics
*
stats
)
=
0
;
/* Function that calls the above scan functions */
int
execute
(
JOIN
*
join
);
...
...
storage/sequence/sequence.cc
View file @
9ca3d9ea
...
...
@@ -377,7 +377,6 @@ class ha_seq_group_by_handler: public group_by_handler
int
init_scan
()
{
first_row
=
1
;
return
0
;
}
int
next_row
();
int
end_scan
()
{
return
0
;
}
int
info
(
uint
flag
,
ha_statistics
*
stats
);
};
static
group_by_handler
*
...
...
@@ -449,14 +448,6 @@ bool ha_seq_group_by_handler::init(TABLE *temporary_table, Item *having_arg,
}
int
ha_seq_group_by_handler
::
info
(
uint
flag
,
ha_statistics
*
stats
)
{
bzero
(
stats
,
sizeof
(
*
stats
));
/* We only return one records for a SUM(*) without a group by */
stats
->
records
=
1
;
return
0
;
}
int
ha_seq_group_by_handler
::
next_row
()
{
List_iterator_fast
<
Item
>
it
(
*
fields
);
...
...
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