You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
MCOL-4713 Analyze table implementation.
This commit is contained in:
@ -200,6 +200,24 @@ const char** ha_mcs::bas_ext() const
|
||||
return ha_mcs_exts;
|
||||
}
|
||||
|
||||
int ha_mcs::analyze(THD* thd, HA_CHECK_OPT* check_opt)
|
||||
{
|
||||
DBUG_ENTER("ha_mcs::analyze");
|
||||
|
||||
int rc;
|
||||
try
|
||||
{
|
||||
rc = ha_mcs_impl_analyze(thd, table);
|
||||
}
|
||||
catch (std::runtime_error& e)
|
||||
{
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, e.what());
|
||||
rc = ER_INTERNAL_ERROR;
|
||||
}
|
||||
|
||||
DBUG_RETURN(rc);
|
||||
}
|
||||
|
||||
/**
|
||||
@brief
|
||||
Used for opening tables. The name will be the name of the file.
|
||||
|
Reference in New Issue
Block a user