~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_reference.h

  • Committer: Monty Taylor
  • Date: 2008-10-30 19:42:06 UTC
  • mto: (520.4.38 devel)
  • mto: This revision was merged to the branch mainline in revision 572.
  • Revision ID: monty@inaugust.com-20081030194206-fzus6yqlw1ekru65
Removed handler from common_includes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 
 *
4
 
 *  Copyright (C) 2008-2009 Sun Microsystems, Inc.
5
 
 *
6
 
 *  This program is free software; you can redistribute it and/or modify
7
 
 *  it under the terms of the GNU General Public License as published by
8
 
 *  the Free Software Foundation; either version 2 of the License, or
9
 
 *  (at your option) any later version.
10
 
 *
11
 
 *  This program is distributed in the hope that it will be useful,
12
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 *  GNU General Public License for more details.
15
 
 *
16
 
 *  You should have received a copy of the GNU General Public License
17
 
 *  along with this program; if not, write to the Free Software
18
 
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 
 */
20
 
 
21
 
/**
22
 
 * @file
23
 
 *
24
 
 * Defines the JoinTable class which is the primary class
25
 
 * used in the nested loops join implementation.
26
 
 */
27
 
 
28
 
#ifndef DRIZZLED_TABLE_REFERENCE_H
29
 
#define DRIZZLED_TABLE_REFERENCE_H
30
 
 
31
 
#include <drizzled/base.h>
32
 
#include "drizzled/definitions.h"
33
 
 
34
 
namespace drizzled
35
 
{
36
 
 
37
 
class StoredKey;
38
 
class Item;
39
 
 
40
 
struct table_reference_st
41
 
{
42
 
  table_reference_st() :
43
 
    key_err(false),
44
 
    key_parts(0),
45
 
    key_length(0),
46
 
    key(0),
47
 
    key_buff(NULL),
48
 
    key_buff2(NULL),
49
 
    key_copy(NULL),
50
 
    items(NULL),
51
 
    cond_guards(NULL),
52
 
    null_ref_key(NULL),
53
 
    disable_cache(false)
54
 
  { }
55
 
 
56
 
  bool key_err;
57
 
  uint32_t key_parts; /**< num of key parts */
58
 
  uint32_t key_length; /**< length of key_buff */
59
 
  int32_t key; /**< key no (index) */
60
 
  unsigned char *key_buff; /**< value to look for with key */
61
 
  unsigned char *key_buff2; /**< key_buff+key_length */
62
 
  StoredKey **key_copy; /**< No idea what this does... */
63
 
  Item **items; /**< val()'s for each keypart */
64
 
  /**
65
 
    Array of pointers to trigger variables. Some/all of the pointers may be
66
 
    NULL.  The ref access can be used iff
67
 
 
68
 
      for each used key part i, (!cond_guards[i] || *cond_guards[i])
69
 
 
70
 
    This array is used by subquery code. The subquery code may inject
71
 
    triggered conditions, i.e. conditions that can be 'switched off'. A ref
72
 
    access created from such condition is not valid when at least one of the
73
 
    underlying conditions is switched off (see subquery code for more details)
74
 
  */
75
 
  bool **cond_guards;
76
 
  /**
77
 
    (null_rejecting & (1<<i)) means the condition is '=' and no matching
78
 
    rows will be produced if items[i] IS NULL (see add_not_null_conds())
79
 
  */
80
 
  key_part_map  null_rejecting;
81
 
  table_map     depend_map; /**< Table depends on these tables. */
82
 
  /** null byte position in the key_buf. Used for REF_OR_NULL optimization */
83
 
  unsigned char *null_ref_key;
84
 
  /**
85
 
    true <=> disable the "cache" as doing lookup with the same key value may
86
 
    produce different results (because of Index Condition Pushdown)
87
 
  */
88
 
  bool disable_cache;
89
 
};
90
 
 
91
 
} /* namespace drizzled */
92
 
 
93
 
#endif /* DRIZZLED_TABLE_REFERENCE_H */