diff options
author | pem@mysql.com <> | 2006-04-07 16:53:15 +0200 |
---|---|---|
committer | pem@mysql.com <> | 2006-04-07 16:53:15 +0200 |
commit | bf548fb916fd24acbfa2e446b69cf6368673e952 (patch) | |
tree | d1ea49f47c3b15c046b21220b75e5683fcb2eb7f /sql/sp_head.h | |
parent | a1bf113868734a060ad22755e813ad5355f25bb5 (diff) | |
download | mariadb-git-bf548fb916fd24acbfa2e446b69cf6368673e952.tar.gz |
Renaming sp_pcontext members and methods; less cryptic and more consistent.
Also added comments, and fixing some coding style (mostly in comments too).
There are no functional changes, so no tests or documentation needed.
(This was originally part of a bugfix, but it was decided to not include this
in that patch; instead it's done separately.)
Diffstat (limited to 'sql/sp_head.h')
-rw-r--r-- | sql/sp_head.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sp_head.h b/sql/sp_head.h index 64d9167fb17..17a5d1ae528 100644 --- a/sql/sp_head.h +++ b/sql/sp_head.h @@ -44,7 +44,7 @@ class sp_instr; class sp_instr_opt_meta; class sp_instr_jump_if_not; struct sp_cond_type; -struct sp_pvar; +struct sp_variable; class sp_name : public Sql_alloc { @@ -1074,7 +1074,7 @@ public: virtual void print(String *str); - void add_to_varlist(struct sp_pvar *var) + void add_to_varlist(struct sp_variable *var) { m_varlist.push_back(var); } @@ -1082,7 +1082,7 @@ public: private: uint m_cursor; - List<struct sp_pvar> m_varlist; + List<struct sp_variable> m_varlist; }; // class sp_instr_cfetch : public sp_instr |