~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.cc

  • Committer: Joe Daly
  • Date: 2010-01-12 19:58:01 UTC
  • mfrom: (1266 build)
  • mto: This revision was merged to the branch mainline in revision 1269.
  • Revision ID: skinny.moey@gmail.com-20100112195801-tbdunjstsj0f6i6v
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1603
1603
  return 0;
1604
1604
}
1605
1605
 
1606
 
 
1607
 
/**
1608
 
  @brief          Fill I_S tables whose data are retrieved
1609
 
                  from frm files and storage engine
1610
 
 
1611
 
  @details        The information schema tables are internally represented as
1612
 
                  temporary tables that are filled at query execution time.
1613
 
                  Those I_S tables whose data are retrieved
1614
 
                  from frm files and storage engine are filled by the function
1615
 
                  plugin::InfoSchemaMethods::fillTable().
1616
 
 
1617
 
  @param[in]      session                      thread Cursor
1618
 
  @param[in]      tables                   I_S table
1619
 
 
1620
 
  @return         Operation status
1621
 
    @retval       0                        success
1622
 
    @retval       1                        error
1623
 
*/
1624
 
int plugin::InfoSchemaMethods::fillTable(Session *session, 
 
1606
int plugin::InfoSchemaMethods::fillTable(Session *session,
1625
1607
                                         Table *table,
1626
1608
                                         plugin::InfoSchemaTable *schema_table)
1627
1609
{