diff options
author | Alexander Barkov <bar@mariadb.org> | 2017-08-04 14:41:05 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2017-08-04 14:41:05 +0400 |
commit | 9b74b00c8e7ab3ed584097f390e5432c18fe3305 (patch) | |
tree | a0700a84f4de78d31d854d1c5f062b62bf322c6b /sql/sp_head.h | |
parent | 68bc777830dc7295a6df38929bf5884ee8669add (diff) | |
download | mariadb-git-9b74b00c8e7ab3ed584097f390e5432c18fe3305.tar.gz |
Adding the "const" qualified to the LEX_CSTRING parameter of a few check_xxx() functions
Functions:
check_routine_name()
check_string_byte_length()
check_string_char_length()
check_ident_length()
Diffstat (limited to 'sql/sp_head.h')
-rw-r--r-- | sql/sp_head.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sp_head.h b/sql/sp_head.h index f1d89a083ab..f9a021d535e 100644 --- a/sql/sp_head.h +++ b/sql/sp_head.h @@ -125,7 +125,7 @@ public: bool -check_routine_name(LEX_CSTRING *ident); +check_routine_name(const LEX_CSTRING *ident); class sp_head :private Query_arena, public Database_qualified_name |