Hi i was reading locale_info and qc_info source that i sent in jira

changing the last parameter from 0 to SKIP_OPEN_TABLE, change the table from aria engine to memory engine, why?

this change something internally in I_S table ?

example:
from
static ST_FIELD_INFO qc_info_fields_queries[]=
{
  {"ENTRY_POSITION_IN_CACHE", MY_INT32_NUM_DECIMAL_DIGITS, MYSQL_TYPE_LONG, 0, 0, 0, 0},
...

to
static ST_FIELD_INFO qc_info_fields_queries[]=
{
  {"ENTRY_POSITION_IN_CACHE", MY_INT32_NUM_DECIMAL_DIGITS, MYSQL_TYPE_LONG, 0, 0, 0, SKIP_OPEN_TABLE},
...

--
Roberto Spadim