diff options
author | unknown <dkatz@damien-katzs-computer.local> | 2007-12-14 18:27:40 -0500 |
---|---|---|
committer | unknown <dkatz@damien-katzs-computer.local> | 2007-12-14 18:27:40 -0500 |
commit | 667752797234b38388e05ab26a40466c56d272dd (patch) | |
tree | 61a4bfaa303447a12e9340e3046fda0db97e9bd7 /mysql-test/r/status.result | |
parent | b9b385014048c9bad563f1fbf952e716b3d1e6e0 (diff) | |
download | mariadb-git-667752797234b38388e05ab26a40466c56d272dd.tar.gz |
Bug #30252 Com_create_function is not incremented.
Added Com_create_spfunction and all other commands previously missing to the global status variables.
Diffstat (limited to 'mysql-test/r/status.result')
-rw-r--r-- | mysql-test/r/status.result | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mysql-test/r/status.result b/mysql-test/r/status.result index c95b09597fc..569bfe37a65 100644 --- a/mysql-test/r/status.result +++ b/mysql-test/r/status.result @@ -162,3 +162,22 @@ Variable_name Value Com_show_status 8 rnd_diff tmp_table_diff 20 8 +show global status like 'Com%function%'; +Variable_name Value +Com_alter_function 0 +Com_create_function 0 +Com_create_spfunction 0 +Com_drop_function 0 +create function f1 (x INTEGER) returns integer +begin +declare ret integer; +set ret = x * 10; +return ret; +end // +drop function f1; +show global status like 'Com%function%'; +Variable_name Value +Com_alter_function 0 +Com_create_function 0 +Com_create_spfunction 1 +Com_drop_function 1 |