1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-11 05:52:26 +03:00

Followup for bug#30252.

Ensure that all SQLCOM_ constants have corresponding Com_ variables.
This commit is contained in:
serg@janus.mylan
2007-12-19 01:27:15 +01:00
parent 87a84dbdc0
commit 3bd3bd1e30
2 changed files with 182 additions and 149 deletions

View File

@@ -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