remove unused method

This commit is contained in:
Sergei Golubchik 2015-10-02 10:19:34 +02:00
commit 9ca3d9ea9c
2 changed files with 0 additions and 12 deletions

View file

@ -377,7 +377,6 @@ public:
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);