diff options
author | kostja@bodhi.(none) <> | 2007-06-10 14:43:57 +0400 |
---|---|---|
committer | kostja@bodhi.(none) <> | 2007-06-10 14:43:57 +0400 |
commit | 6c352d16d933777293d86f9b9069ebdf7b792389 (patch) | |
tree | 520f97e0d46607e96ab7dd8c8f40c33333322881 /sql/sp_head.h | |
parent | 5005ae36569d14692df18f1408fc370519fe9e34 (diff) | |
download | mariadb-git-6c352d16d933777293d86f9b9069ebdf7b792389.tar.gz |
Follow up after work on Bug 4968
Coding style: classes start with a capital letter.
Rename some classes related to parsing:
create_field -> Create_field
foreign_key -> Foreign_key
key_part_spec -> Key_part_spec
Diffstat (limited to 'sql/sp_head.h')
-rw-r--r-- | sql/sp_head.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sp_head.h b/sql/sp_head.h index eacc2ccdcf6..89af0259706 100644 --- a/sql/sp_head.h +++ b/sql/sp_head.h @@ -126,7 +126,7 @@ public: int m_type; uint m_flags; // Boolean attributes of a stored routine - create_field m_return_field_def; /* This is used for FUNCTIONs only. */ + Create_field m_return_field_def; /* This is used for FUNCTIONs only. */ const char *m_tmp_query; // Temporary pointer to sub query string st_sp_chistics *m_chistics; @@ -290,7 +290,7 @@ public: bool fill_field_definition(THD *thd, LEX *lex, enum enum_field_types field_type, - create_field *field_def); + Create_field *field_def); void set_info(longlong created, longlong modified, st_sp_chistics *chistics, ulong sql_mode); |