1
0
mirror of https://github.com/MariaDB/server.git synced 2025-04-23 07:05:53 +03:00
mariadb/mysql-test/t/sp-no-code.test
Marc Alff 6a67daaa5a Bug#33637 SHOW PROCEDURE CODE/SHOW FUNCTION CODE sp_name gives a syntax error.
Backport for 5.5

In non debug builds, the statements:
- SHOW PROCEDURE CODE
- SHOW FUNCTION CODE
used to fail with a "syntax error", which is misleading.

These statements have been changed to return the following error for non
debug builds:
ERROR HY000: The 'SHOW PROCEDURE|FUNCTION CODE' feature is disabled; you
need MySQL built with '--with-debug' to have it working

For debug builds (./configure --with-debug), nothing is changed.
2009-10-29 10:51:04 -06:00

13 lines
216 B
Plaintext

#
# Test the debugging feature "show procedure/function code <name>"
#
-- source include/have_nodebug.inc
--error ER_FEATURE_DISABLED
show procedure code foo;
--error ER_FEATURE_DISABLED
show function code foo;