~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2011-07-25 14:24:19 UTC
  • mto: This revision was merged to the branch mainline in revision 2373.
  • Revision ID: brian@tangent.org-20110725142419-3vobv9u6k7jp4qej
Remove the typedef on lexkey

Show diffs side-by-side

added added

removed removed

Lines of Context:
829
829
    return server_status & SERVER_STATUS_IN_TRANS;
830
830
  }
831
831
 
832
 
  LEX_STRING *make_lex_string(LEX_STRING *lex_str,
 
832
  lex_string_t *make_lex_string(lex_string_t *lex_str,
833
833
                              const char* str, uint32_t length,
834
834
                              bool allocate_lex_string);
835
835
 
836
 
  LEX_STRING *make_lex_string(LEX_STRING *lex_str,
 
836
  lex_string_t *make_lex_string(lex_string_t *lex_str,
837
837
                              const std::string &str,
838
838
                              bool allocate_lex_string);
839
839
 
1032
1032
  void add_group_to_list(Item *item, bool asc);
1033
1033
 
1034
1034
  void refresh_status();
1035
 
  user_var_entry *getVariable(LEX_STRING &name, bool create_if_not_exists);
 
1035
  user_var_entry *getVariable(lex_string_t &name, bool create_if_not_exists);
1036
1036
  user_var_entry *getVariable(const std::string  &name, bool create_if_not_exists);
1037
1037
  void setVariable(const std::string &name, const std::string &value);
1038
1038