~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cursor.h

  • Committer: Olaf van der Spek
  • Date: 2011-03-28 21:07:04 UTC
  • mto: (2257.1.1 build) (2276.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2258.
  • Revision ID: olafvdspek@gmail.com-20110328210704-ygzfovqmxukelkno
Common fwd

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
#include <drizzled/visibility.h>
38
38
 
39
 
namespace drizzled
40
 
{
 
39
namespace drizzled {
41
40
 
42
41
#define HA_MAX_ALTER_FLAGS 40
43
42
 
44
43
typedef std::bitset<HA_MAX_ALTER_FLAGS> HA_ALTER_FLAGS;
45
44
 
46
 
class AlterInfo;
47
 
class CreateField;
48
 
class ForeignKeyInfo;
49
 
class Item;
50
 
class Item_ident;
51
 
class LEX;
52
 
class Select_Lex;
53
 
class Select_Lex_Unit;
54
 
class String;
55
 
class Table;
56
 
class TableList;
57
 
class TableShare;
58
 
class select_result;
59
 
class sys_var_str;
60
 
struct Order;
61
 
 
62
45
typedef List<Item> List_item;
63
46
extern KEY_CREATE_INFO default_key_create_info;
64
47