diff options
author | anozdrin@mysql.com <> | 2006-03-10 22:23:04 +0300 |
---|---|---|
committer | anozdrin@mysql.com <> | 2006-03-10 22:23:04 +0300 |
commit | 41423cd05c50f79989f2ae6ce2d7f6c4043ad724 (patch) | |
tree | 154219a8588855f3750e754f5c8d3c084a11cc84 /client | |
parent | e3d8ab027089bfb878cbef824e69c6ab4e816e70 (diff) | |
download | mariadb-git-41423cd05c50f79989f2ae6ce2d7f6c4043ad724.tar.gz |
Fix version of DEFINER-clause in mysqldump.
Now DEFINER-clause in stored routines is expected to appear
in 5.0.20 release, not in 5.0.19. as it was supposed before.
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqldump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqldump.c b/client/mysqldump.c index e0469e00031..78f12593f46 100644 --- a/client/mysqldump.c +++ b/client/mysqldump.c @@ -1342,7 +1342,7 @@ static uint dump_routines_for_db(char *db) query_str_tail= strnmov(query_str, row[2], definer_begin - row[2]); - query_str_tail= strmov(query_str_tail, "*/ /*!50019"); + query_str_tail= strmov(query_str_tail, "*/ /*!50020"); query_str_tail= strnmov(query_str_tail, definer_begin, definer_end - definer_begin); query_str_tail= strxmov(query_str_tail, "*/ /*!50003", |