~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/handler/ha_innodb.h

  • Committer: Brian Aker
  • Date: 2010-10-15 00:59:36 UTC
  • mfrom: (1849 staging)
  • mto: This revision was merged to the branch mainline in revision 1853.
  • Revision ID: brian@tangent.org-20101015005936-znhvkz8khs4fhlyv
Merge with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
250
250
innobase_trx_allocate(
251
251
/*==================*/
252
252
        Session         *session);      /*!< in: user thread handle */
 
253
 
 
254
/***********************************************************************
 
255
This function checks each index name for a table against reserved
 
256
system default primary index name 'GEN_CLUST_INDEX'. If a name matches,
 
257
this function pushes an error message to the client, and returns true. */
 
258
extern "C"
 
259
bool
 
260
innobase_index_name_is_reserved(
 
261
/*============================*/
 
262
                                        /* out: true if index name matches a
 
263
                                        reserved name */
 
264
        const trx_t*    trx,            /* in: InnoDB transaction handle */
 
265
        const drizzled::KeyInfo*        key_info,/* in: Indexes to be created */
 
266
        ulint           num_of_keys);   /* in: Number of indexes to
 
267
                                        be created. */
 
268
 
253
269
#endif /* INNODB_HANDLER_HA_INNODB_H */