~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/dict0dict.h

  • Committer: Brian Aker
  • Date: 2010-12-07 09:12:12 UTC
  • mto: This revision was merged to the branch mainline in revision 1985.
  • Revision ID: brian@tangent.org-20101207091212-1m0w20tck6z7632m
This is a fix for bug lp:686197

Show diffs side-by-side

added added

removed removed

Lines of Context:
699
699
dict_table_zip_size(
700
700
/*================*/
701
701
        const dict_table_t*     table); /*!< in: table */
702
 
/*********************************************************************//**
703
 
Obtain exclusive locks on all index trees of the table. This is to prevent
704
 
accessing index trees while InnoDB is updating internal metadata for
705
 
operations such as truncate tables. */
706
 
UNIV_INLINE
707
 
void
708
 
dict_table_x_lock_indexes(
709
 
/*======================*/
710
 
        dict_table_t*   table); /*!< in: table */
711
 
/*********************************************************************//**
712
 
Release the exclusive locks on all index tree. */
713
 
UNIV_INLINE
714
 
void
715
 
dict_table_x_unlock_indexes(
716
 
/*========================*/
717
 
        dict_table_t*   table); /*!< in: table */
718
702
/********************************************************************//**
719
703
Checks if a column is in the ordering columns of the clustered index of a
720
704
table. Column prefixes are treated like whole columns.