~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/table_function.h

  • Committer: Lee Bieber
  • Date: 2010-12-23 23:11:00 UTC
  • mfrom: (2024.1.1 clean)
  • Revision ID: kalebral@gmail.com-20101223231100-0rqirgz7ugkl10yp
Merge Brian - session list cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
#include <set>
36
36
#include <algorithm>
37
37
 
38
 
#include "drizzled/visibility.h"
39
 
 
40
38
namespace drizzled
41
39
{
42
40
 
 
41
extern int wild_case_compare(const CHARSET_INFO * const cs, 
 
42
                             const char *str,const char *wildstr);
 
43
 
43
44
namespace plugin
44
45
{
45
46
 
60
61
  return buffer;
61
62
}
62
63
 
63
 
class DRIZZLED_API TableFunction : public Plugin
 
64
class TableFunction : public Plugin
64
65
{
65
66
  TableFunction();
66
67
  TableFunction(const TableFunction &);
67
68
  TableFunction& operator=(const TableFunction &);
68
69
 
69
70
  message::Table proto;
70
 
  identifier::Table identifier;
 
71
  TableIdentifier identifier;
71
72
  std::string local_path;
72
73
  std::string original_table_label;
73
74