summaryrefslogtreecommitdiff
path: root/tests/udf_test
diff options
context:
space:
mode:
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;