~ubuntu-branches/ubuntu/maverick/mysql-5.1/maverick-proposed

« back to all changes in this revision

Viewing changes to sql/table.h

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 14:16:05 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: package-import@ubuntu.com-20120222141605-nxlu9yzc6attylc2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright 2000-2008 MySQL AB, 2008 Sun Microsystems, Inc.
 
1
/* Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
2
2
 
3
3
   This program is free software; you can redistribute it and/or modify
4
4
   it under the terms of the GNU General Public License as published by
55
55
  struct st_order *next;
56
56
  Item   **item;                        /* Point at item in select fields */
57
57
  Item   *item_ptr;                     /* Storage for initial item */
58
 
  Item   **item_copy;                   /* For SPs; the original item ptr */
59
58
  int    counter;                       /* position in SELECT list, correct
60
59
                                           only if counter_used is true*/
61
60
  bool   asc;                           /* true if ascending */
442
441
#ifdef WITH_PARTITION_STORAGE_ENGINE
443
442
  /** @todo: Move into *ha_data for partitioning */
444
443
  bool auto_partitioned;
445
 
  const char *partition_info;
 
444
  char *partition_info;
446
445
  uint  partition_info_len;
447
446
  uint  partition_info_buffer_size;
448
447
  const char *part_state;
464
463
 
465
464
  /** place to store storage engine specific data */
466
465
  void *ha_data;
 
466
  void (*ha_data_destroy)(void *); /* An optional destructor for ha_data. */
467
467
 
468
468
 
469
469
  /*