Repository: incubator-hawq Updated Branches: refs/heads/master 37dcd1ed6 -> 5f2b5b46a
HAWQ-820. Correct expected output for query in basic udf suite in new feature test framework Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/5f2b5b46 Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/5f2b5b46 Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/5f2b5b46 Branch: refs/heads/master Commit: 5f2b5b46a391accca85de8984bf96b499fa01bd9 Parents: 37dcd1e Author: Ruilong Huo <[email protected]> Authored: Wed Jun 15 15:42:59 2016 +0800 Committer: Ruilong Huo <[email protected]> Committed: Wed Jun 15 15:42:59 2016 +0800 ---------------------------------------------------------------------- src/test/feature/udf/ans/function_basics.ans | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/5f2b5b46/src/test/feature/udf/ans/function_basics.ans ---------------------------------------------------------------------- diff --git a/src/test/feature/udf/ans/function_basics.ans b/src/test/feature/udf/ans/function_basics.ans index 7328107..ff45af2 100755 --- a/src/test/feature/udf/ans/function_basics.ans +++ b/src/test/feature/udf/ans/function_basics.ans @@ -1045,8 +1045,20 @@ SELECT outer(0); (1 row) SELECT outer(0) FROM foo; -psql:/tmp/TestUDF_TestUDFBasics.sql:423: ERROR: function inner(integer) does not exist (seg2 localhost:40000 pid=70512) -DETAIL: PL/pgSQL function "outer" line 2 at return + outer +------- + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 +(10 rows) + DROP FUNCTION outer(int); DROP FUNCTION DROP FUNCTION inner(int);
