You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@asterixdb.apache.org by "Dmitry Lychagin (Jira)" <ji...@apache.org> on 2021/04/05 18:11:00 UTC

[jira] [Created] (ASTERIXDB-2871) Query fails with: ASX1079: Compilation error: Recursive invocation

Dmitry Lychagin created ASTERIXDB-2871:
------------------------------------------

             Summary: Query fails with: ASX1079: Compilation error: Recursive invocation
                 Key: ASTERIXDB-2871
                 URL: https://issues.apache.org/jira/browse/ASTERIXDB-2871
             Project: Apache AsterixDB
          Issue Type: Bug
          Components: COMP - Compiler
    Affects Versions: 0.9.6
            Reporter: Dmitry Lychagin
            Assignee: Dmitry Lychagin
             Fix For: 0.9.7


The following query fails with "Compilation error: Recursive invocation test.f1b(1) <==> test.f1a(1)" even though there's no recursive function invocation there.

{noformat}
drop dataverse test if exists;
create dataverse test;
use test;
create function f1a(a) { -a };
create function f1b(b) { f1a(b) + f1a(b) };

select r, f1a(r) f1a, f1b(r) f1b
from range(1,2) r
order by r;
{noformat}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)