~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/mysql_password.h

  • Committer: Henrik Ingo
  • Date: 2011-09-23 06:14:37 UTC
  • mfrom: (2425 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2439.
  • Revision ID: henrik.ingo@avoinelama.fi-20110923061437-ct1wedkb9s47uy2t
Merge newest trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#include <drizzled/item/func.h>
19
19
#include <drizzled/function/str/strfunc.h>
20
20
 
21
 
namespace drizzle_plugin
22
 
{
 
21
namespace drizzle_plugin {
23
22
 
24
23
extern const char* MySQLPasswordName;
25
24
 
26
25
class MySQLPassword: public drizzled::Item_str_func
27
26
{
28
27
public:
29
 
  MySQLPassword(void);
30
 
  const char *func_name(void) const;
31
 
  void fix_length_and_dec(void);
 
28
  const char *func_name() const;
 
29
  void fix_length_and_dec();
32
30
  bool check_argument_count(int n);
33
31
  drizzled::String *val_str(drizzled::String *);
34
32
};