1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

Merge pull request #1467 from drrtuy/MCOL-4278-dev

MCOL-4278 MCS quits early from rnd_end() in the presense of sql_selec…
This commit is contained in:
David.Hall
2020-09-24 10:11:08 -05:00
committed by GitHub
3 changed files with 9 additions and 20 deletions

View File

@ -603,7 +603,7 @@ int ha_columnstore_derived_handler::init_scan()
mcs_handler_info mhi = mcs_handler_info(reinterpret_cast<void*>(this), DERIVED);
// this::table is the place for the result set
int rc = ha_cs_impl_pushdown_init(&mhi, table);
int rc = ha_mcs_impl_pushdown_init(&mhi, table);
DBUG_RETURN(rc);
}
@ -923,7 +923,7 @@ int ha_columnstore_select_handler::init_scan()
{
mcs_handler_info mhi= mcs_handler_info(
reinterpret_cast<void*>(this), SELECT);
rc= ha_cs_impl_pushdown_init(&mhi, this->table);
rc= ha_mcs_impl_pushdown_init(&mhi, this->table);
}
}
else
@ -950,7 +950,7 @@ int ha_columnstore_select_handler::next_row()
{
DBUG_ENTER("ha_columnstore_select_handler::next_row");
int rc= ha_cs_impl_select_next(table->record[0], table);
int rc= ha_mcs_impl_select_next(table->record[0], table);
DBUG_RETURN(rc);
}