~thomir-deactivatedaccount/drizzle/drizzle-fix-bug653747

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2010-10-10 02:07:52 UTC
  • mfrom: (1827.2.3 staging)
  • Revision ID: brian@tangent.org-20101010020752-ktv73isay5dxtvp3
Merge in switch on table_share_instance inheritance.

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
 
 
269
253
#endif /* INNODB_HANDLER_HA_INNODB_H */