~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/function.h

  • Committer: Brian Aker
  • Date: 2010-09-10 22:40:11 UTC
  • mto: (1759.2.1 build)
  • mto: This revision was merged to the branch mainline in revision 1762.
  • Revision ID: brian@tangent.org-20100910224011-gya7cep2bl8h7vdw
Adding in data dictionary table to list out functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
   */
76
76
  static const plugin::Function *get(const char *name, size_t len=0);
77
77
 
 
78
  typedef boost::unordered_map<std::string, const plugin::Function *, util::insensitive_hash, util::insensitive_equal_to> UdfMap;
 
79
 
 
80
  static const UdfMap &getMap();
78
81
};
79
82
 
80
83
template<class T>