~ubuntu-branches/ubuntu/wily/mysql-5.6/wily

« back to all changes in this revision

Viewing changes to sql/table.h

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2015-04-16 20:07:10 UTC
  • mfrom: (1.2.5)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: package-import@ubuntu.com-20150416200710-pfv24hkypwgmv7h6
* SECURITY UPDATE: Update to 5.5.41 to fix security issues (LP: #1444616)
  - http://www.oracle.com/technetwork/topics/security/cpuapr2015-2365600.html
  - CVE-2015-0498
  - CVE-2015-0499
  - CVE-2015-0500
  - CVE-2015-0501
  - CVE-2015-0503
  - CVE-2015-0505
  - CVE-2015-0506
  - CVE-2015-0507
  - CVE-2015-0508
  - CVE-2015-0511
  - CVE-2015-2567
  - CVE-2015-2571
* debian/rules: fix ftbfs by building the sql directory first so the
  required files are generated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef TABLE_INCLUDED
2
2
#define TABLE_INCLUDED
3
3
 
4
 
/* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
 
4
/* Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
5
5
 
6
6
   This program is free software; you can redistribute it and/or modify
7
7
   it under the terms of the GNU General Public License as published by
639
639
  key_map keys_for_keyread;
640
640
  ha_rows min_rows, max_rows;           /* create information */
641
641
  ulong   avg_row_length;               /* create information */
 
642
  /**
 
643
    TABLE_SHARE version, if changed the TABLE_SHARE must be reopened.
 
644
    NOTE: The TABLE_SHARE will not be reopened during LOCK TABLES in
 
645
    close_thread_tables!!!
 
646
  */
642
647
  ulong   version;
643
648
  ulong   mysql_version;                /* 0 if .frm is created before 5.0 */
644
649
  ulong   reclength;                    /* Recordlength */
1169
1174
  my_bool insert_or_update;             /* Can be used by the handler */
1170
1175
  my_bool alias_name_used;              /* true if table_name is alias */
1171
1176
  my_bool get_fields_in_item_tree;      /* Signal to fix_field */
 
1177
  /**
 
1178
    This table must be reopened and is not to be reused.
 
1179
    NOTE: The TABLE will not be reopened during LOCK TABLES in
 
1180
    close_thread_tables!!!
 
1181
  */
1172
1182
  my_bool m_needs_reopen;
1173
1183
private:
1174
1184
  bool created; /* For tmp tables. TRUE <=> tmp table has been instantiated.*/