diff options
author | unknown <serg@janus.mylan> | 2007-12-19 01:27:15 +0100 |
---|---|---|
committer | unknown <serg@janus.mylan> | 2007-12-19 01:27:15 +0100 |
commit | 604b3982ce62fda12e4977e0c5a3b091b3f63a74 (patch) | |
tree | 15a565760e0d53bfc3f66746b4be9b4491624e0f /mysql-test/r/status.result | |
parent | 881b405d06606cbfb2d5e0ca270511a789aae625 (diff) | |
download | mariadb-git-604b3982ce62fda12e4977e0c5a3b091b3f63a74.tar.gz |
Followup for bug#30252.
Ensure that all SQLCOM_ constants have corresponding Com_ variables.
mysql-test/r/status.result:
Tests updated.
sql/mysqld.cc:
Followup for bug#30252.
Rename few variables to match SQL syntax.
Ensure that all SQLCOM_ constants have corresponding Com_ variables.
Diffstat (limited to 'mysql-test/r/status.result')
-rw-r--r-- | mysql-test/r/status.result | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mysql-test/r/status.result b/mysql-test/r/status.result index 569bfe37a65..fc78f4ad40f 100644 --- a/mysql-test/r/status.result +++ b/mysql-test/r/status.result @@ -166,8 +166,9 @@ 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 +Com_show_function_code 0 +Com_show_function_status 0 create function f1 (x INTEGER) returns integer begin declare ret integer; @@ -178,6 +179,7 @@ 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_create_function 1 Com_drop_function 1 +Com_show_function_code 0 +Com_show_function_status 0 |