~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/function.h

  • Committer: Lee Bieber
  • Date: 2011-01-25 02:10:42 UTC
  • mfrom: (2109.1.4 build)
  • Revision ID: kalebral@gmail.com-20110125021042-ocqa0v509ae7fmtz
Need to add a "drop table a" in execute.wait test
Add execute test suite to regular test run
Merge Lee - fix second part of 705699, check for both client and server before building and testing rabbitmq plugin
Merge Shrews - Changes TransactionServices methods to use references to Session objects instead of pointers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#define DRIZZLED_PLUGIN_FUNCTION_H
22
22
 
23
23
 
24
 
#include <drizzled/item/func.h>
25
 
#include <drizzled/plugin.h>
26
 
#include <drizzled/plugin/plugin.h>
 
24
#include "drizzled/plugin/plugin.h"
 
25
#include "drizzled/item/func.h"
27
26
 
28
27
#include <string>
29
28
#include <vector>
30
29
#include <functional>
31
30
 
32
 
#include <boost/unordered_map.hpp>
33
 
 
34
 
#include <drizzled/visibility.h>
35
 
 
36
31
namespace drizzled
37
32
{
38
33
 
43
38
  class Root;
44
39
}
45
40
 
46
 
namespace util
47
 
{
48
 
struct insensitive_hash;
49
 
struct insensitive_equal_to;
50
 
}
51
 
 
52
41
namespace plugin
53
42
{
54
43
 
55
44
/**
56
45
 * Functions in the server: AKA UDF
57
46
 */
58
 
class DRIZZLED_API Function
 
47
class Function
59
48
  : public Plugin,
60
49
    public std::unary_function<memory::Root*, Item_func *>
61
50
{