~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/enum_nested_loop_state.h

  • Committer: Monty Taylor
  • Date: 2009-10-06 19:14:39 UTC
  • mfrom: (1130.2.18 plugin-base-class)
  • mto: This revision was merged to the branch mainline in revision 1184.
  • Revision ID: mordred@inaugust.com-20091006191439-fd1vvlp22654l3k3
Merged latest plugin-base-class.

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, Inc.
 
4
 *  Copyright (C) 2008-2009 Sun Microsystems
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
20
20
#ifndef DRIZZLED_ENUM_NESTED_LOOP_STATE_H
21
21
#define DRIZZLED_ENUM_NESTED_LOOP_STATE_H
22
22
 
23
 
namespace drizzled
24
 
{
25
 
 
26
23
/** The states in which a nested loop join can be in */
27
24
enum enum_nested_loop_state
28
25
{
34
31
  NESTED_LOOP_CURSOR_LIMIT= 4
35
32
};
36
33
 
37
 
class Join;
 
34
class JOIN;
38
35
class JoinTable;
39
36
 
40
 
typedef enum_nested_loop_state (*Next_select_func)(Join *, JoinTable *, bool);
 
37
typedef enum_nested_loop_state (*Next_select_func)(JOIN *, JoinTable *, bool);
41
38
typedef int (*Read_record_func)(JoinTable *tab);
42
 
Next_select_func setup_end_select_func(Join *join);
43
 
 
44
 
} /* namespace drizzled */
 
39
Next_select_func setup_end_select_func(JOIN *join);
45
40
 
46
41
#endif /* DRIZZLED_ENUM_NESTED_LOOP_STATE_H */