~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/join_table.h

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008-2009 Sun Microsystems
 
4
 *  Copyright (C) 2008-2009 Sun Microsystems, Inc.
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
41
41
namespace drizzled
42
42
{
43
43
 
 
44
class Table;
 
45
 
 
46
namespace optimizer
 
47
{
 
48
  class Position;
 
49
}
44
50
/* Values for JoinTable::packed_info */
45
51
#define TAB_INFO_HAVE_VALUE 1
46
52
#define TAB_INFO_USING_INDEX 2
47
53
#define TAB_INFO_USING_WHERE 4
48
54
#define TAB_INFO_FULL_SCAN_ON_NULL 8
49
55
 
50
 
class Table;
51
 
 
52
 
 
53
56
/** Description of an access method */
54
57
enum access_method
55
58
243
246
  }
244
247
 
245
248
  void readCachedRecord();
 
249
  int joinReadConstTable(optimizer::Position *pos);
 
250
  int joinReadSystem();
246
251
};
247
252
 
248
253
} /* namespace drizzled */