You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-07 03:22:57 +03:00
MCOL-1052. The handler returns fixed value.
This commit is contained in:
@@ -1152,6 +1152,12 @@ create_calpont_group_by_handler(THD *thd, Query *query)
|
|||||||
|
|
||||||
int ha_calpont_group_by_handler::next_row()
|
int ha_calpont_group_by_handler::next_row()
|
||||||
{
|
{
|
||||||
|
if (!first_row)
|
||||||
|
return(HA_ERR_END_OF_FILE);
|
||||||
|
first_row= 0;
|
||||||
|
Field *field = *(table->field);
|
||||||
|
field->store(5LL, 1);
|
||||||
|
field->set_notnull();
|
||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user