diff options
author | Alexander Barkov <bar@mariadb.org> | 2017-08-01 12:04:14 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2017-08-01 12:04:14 +0400 |
commit | 9372f6e526734bfcc1ad38b87cdccd5dfc404efd (patch) | |
tree | a6b2f94fb686b795408884ad99bcccc2143d763a /sql/sp.h | |
parent | c9218ff43989bf2385d1f62b45ed1f6229cbc5a5 (diff) | |
download | mariadb-git-9372f6e526734bfcc1ad38b87cdccd5dfc404efd.tar.gz |
MDEV-13419 Cleanup for Sp_handler::show_create_sp
Diffstat (limited to 'sql/sp.h')
-rw-r--r-- | sql/sp.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -150,6 +150,11 @@ public: sql_mode_t sql_mode, bool *free_sp_head) const; + /* + Make a SHOW CREATE statement. + @retval true on error + @retval false on success + */ bool show_create_sp(THD *thd, String *buf, const LEX_CSTRING &db, const LEX_CSTRING &name, @@ -158,6 +163,7 @@ public: const LEX_CSTRING &body, const st_sp_chistics &chistics, const AUTHID &definer, + const DDL_options_st ddl_options, sql_mode_t sql_mode) const; }; |