~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/udf_skip_grants.test

  • Committer: Monty Taylor
  • Date: 2008-07-01 14:33:36 UTC
  • mto: (28.1.12 backport_patch)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: monty@inaugust.com-20080701143336-8uihm7dhpu92rt0q
Somehow missed moving password.c. Duh.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
####################### udf_skip_grants.test ###########################
 
2
#                                                                      #
 
3
# Test for bug #32020 "loading udfs while --skip-grant-tables is       #
 
4
#                     enabled causes out of memory errors"             #
 
5
#                                                                      #
 
6
# Creation:                                                            #
 
7
# 2007-12-24 akopytov Moved the test case for bug #32020 from          #
 
8
#                     skip_grants.test to a separate test to ensure    #
 
9
#                     that it is only run when the server is built     #
 
10
#                     with support for dynamically loaded libraries    #
 
11
#                     (see bug #33305).                                #
 
12
#                                                                      #
 
13
########################################################################
 
14
 
 
15
-- source include/have_udf.inc
 
16
 
 
17
#
 
18
# Bug #32020: loading udfs while --skip-grant-tables is enabled causes out of 
 
19
#             memory errors
 
20
#
 
21
 
 
22
--error ER_CANT_INITIALIZE_UDF
 
23
CREATE FUNCTION a RETURNS STRING SONAME '';
 
24
--error ER_SP_DOES_NOT_EXIST
 
25
DROP FUNCTION a;
 
26
 
 
27
--echo End of 5.0 tests