~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_list.h

  • Committer: Brian Aker
  • Date: 2010-10-22 07:31:00 UTC
  • mto: This revision was merged to the branch mainline in revision 1872.
  • Revision ID: brian@tangent.org-20101022073100-w4x3h4753sz0pm82
Remove dead method

Show diffs side-by-side

added added

removed removed

Lines of Context:
359
359
   *   true found and reported an error.
360
360
   */
361
361
  bool process_index_hints(Table *table);
362
 
  /**
363
 
   * Creates a table definition cache key for this table entry.
364
 
   *
365
 
   * @param[out] Create key here (must be of size MAX_DBKEY_LENGTH)
366
 
   *
367
 
   * @note
368
 
   *
369
 
   * The table cache_key is created from:
370
 
   *   db_name + \0
371
 
   *   table_name + \0
372
 
   *
373
 
   * if the table is a tmp table, we add the following to make each tmp table
374
 
   * unique on the slave:
375
 
   *
376
 
   * 4 bytes for master thread id
377
 
   * 4 bytes pseudo thread id
378
 
   *
379
 
   * @retval
380
 
   *  Length of key
381
 
   */
382
 
  uint32_t create_table_def_key(char *key);
383
362
 
384
363
  friend std::ostream& operator<<(std::ostream& output, const TableList &list)
385
364
  {