You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@asterixdb.apache.org by "Xikui Wang (JIRA)" <ji...@apache.org> on 2017/09/13 02:41:00 UTC

[jira] [Created] (ASTERIXDB-2088) Recursive SQLPP function call issue

Xikui Wang created ASTERIXDB-2088:
-------------------------------------

             Summary: Recursive SQLPP function call issue
                 Key: ASTERIXDB-2088
                 URL: https://issues.apache.org/jira/browse/ASTERIXDB-2088
             Project: Apache AsterixDB
          Issue Type: Bug
            Reporter: Xikui Wang


create function fun1(x) {
x+2
};

with x1 as fun1(1), x2 as fun1(x1)
select x2;

The 2nd fun1 cannot be evaluated properly.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)