summaryrefslogtreecommitdiff
path: root/tests/udf_test
diff options
context:
space:
mode:
authorbell@laptop.sanja.is.com.ua <>2003-10-06 11:13:25 +0300
committerbell@laptop.sanja.is.com.ua <>2003-10-06 11:13:25 +0300
commitb0b87a111a33a236ef522a410d571d5761602721 (patch)
tree0c4637f6138faf40b1c409a11b0bbfd757e4e95a /tests/udf_test
parent6a1ebb30380b92276f3e90b8841e6738670b0a7b (diff)
downloadmariadb-git-b0b87a111a33a236ef522a410d571d5761602721.tar.gz
after review patch (SCRUM)
Diffstat (limited to 'tests/udf_test')
-rw-r--r--tests/udf_test2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/udf_test b/tests/udf_test
index 2bdacc34d13..15ad640f984 100644
--- a/tests/udf_test
+++ b/tests/udf_test
@@ -21,7 +21,7 @@ create temporary table t1 (a int,b double);
insert into t1 values (1,5),(1,4),(2,8),(3,9),(4,11);
select avgcost(a,b) from t1;
select avgcost(a,b) from t1 group by a;
-select a, myfunc_argument_name(a) from t1;
+select a, myfunc_argument_name(a), myfunc_argument_name(a as b) from t1;
drop table t1;
DROP FUNCTION metaphon;