Revert r108603, which was itself a revert of r107376, r107994. Before considering...
[lhc/web/wiklou.git] / tests / phpunit / data / db / mysql / functions.sql
1 -- MySQL test file for DatabaseTest::testStoredFunctions()
2
3 DELIMITER //
4
5 CREATE FUNCTION mw_test_function()
6 RETURNS int DETERMINISTIC
7 BEGIN
8 SET @foo = 21;
9 RETURN @foo * 2;
10 END//
11
12 DELIMITER //