~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/user_var_entry.h

  • Committer: Lee Bieber
  • Date: 2010-01-30 23:42:02 UTC
  • mto: This revision was merged to the branch mainline in revision 1282.
  • Revision ID: lbieber@lee-biebers-macbook-pro.local-20100130234202-sxmqfteqwiq15ptg
add target to japanese tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include "drizzled/query_id.h"
25
25
 
26
 
namespace drizzled
27
 
{
28
 
 
29
26
// this is needed for user_vars hash
30
27
class user_var_entry
31
28
{
42
39
  { 
43
40
    name.str= strdup(arg);
44
41
    name.length= strlen(arg);
45
 
  }
 
42
  };
46
43
 
47
44
  ~user_var_entry()
48
45
  {
72
69
                   bool unsigned_arg);
73
70
};
74
71
 
75
 
} /* namespace drizzled */
76
 
 
77
72
#endif /* DRIZZLED_USER_VAR_ENTRY_H */