Skip to content

Commit

Permalink
- Fix MDEV-12422 by implementing a fake virtual "check" function.
Browse files Browse the repository at this point in the history
  modified:   storage/connect/ha_connect.h
  • Loading branch information
Buggynours committed Aug 20, 2017
1 parent b6afeac commit 5f83a9b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions storage/connect/ha_connect.h
Expand Up @@ -348,6 +348,13 @@ const char *GetValStr(OPVAL vop, bool neg);
PFIL CondFilter(PGLOBAL g, Item *cond);
//PFIL CheckFilter(PGLOBAL g);

/** admin commands - called from mysql_admin_table */
virtual int check(THD* thd, HA_CHECK_OPT* check_opt)
{
// TODO: implement it
return HA_ADMIN_OK; // Just to avoid error message with checktables
} // end of check

/**
Number of rows in table. It will only be called if
(table_flags() & (HA_HAS_RECORDS | HA_STATS_RECORDS_IS_EXACT)) != 0
Expand Down

0 comments on commit 5f83a9b

Please sign in to comment.