diff options
Diffstat (limited to 'mysql-test/t/sp.test')
-rw-r--r-- | mysql-test/t/sp.test | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/mysql-test/t/sp.test b/mysql-test/t/sp.test index 3b690f8b542..d56d5859940 100644 --- a/mysql-test/t/sp.test +++ b/mysql-test/t/sp.test @@ -213,16 +213,6 @@ until x = 0 end repeat| drop procedure b2| -# Btw, this should generate an error (for now; this might change in the future) ---error 1259 -create procedure b3(x int) -repeat - select * from test.t1; # No INTO! - insert into test.t1 values (repeat("b3",3), x); - set x = x-1; -until x = 0 end repeat| - - # Labelled WHILE with ITERATE (pointless really) create procedure c(x int) hmm: while x > 0 do @@ -398,14 +388,6 @@ end| #drop table t2| drop procedure create_select| -# Check that we get the right error, i.e. UDF declaration parses correctly, -# but foo.so doesn't exist. -# QQ This generates an error message containing a misleading errno which -# might vary between systems (it usually doesn't have anything to do with -# the actual failing dlopen()). -#--error 1126 -#create function foo returns real soname "foo.so"| - # A minimal, constant FUNCTION. create function e() returns double return 2.7182818284590452354| |