~sinha/drizzle/trunk-bug-621856

« back to all changes in this revision

Viewing changes to drizzled/plugin/function.h

  • Committer: Brian Aker
  • Date: 2011-02-27 02:20:23 UTC
  • mfrom: (2198.6.15 drizzle-build)
  • Revision ID: brian@tangent.org-20110227022023-ycawb23rnf22ic1l
Add ANSI || operator, fixes CREATE TABLE for boolean types such that
TRUE/FALSE are not the options for default values. Removes BOOL mysql
compatible (since Monty fixed all bool to work for MySQL clients).

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
   */
81
81
  static void removePlugin(const plugin::Function *function_obj);
82
82
 
83
 
  static const plugin::Function *get(const char *name, size_t len=0);
 
83
  static const plugin::Function *get(const std::string &name);
84
84
 
85
85
  typedef boost::unordered_map<std::string, const plugin::Function *, util::insensitive_hash, util::insensitive_equal_to> UdfMap;
86
86
  typedef boost::unordered_map<std::string, const plugin::Function *, util::insensitive_hash, util::insensitive_equal_to> Map;