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

[jira] [Created] (ASTERIXDB-2893) Operator/UDF on FuzzyJoin raises Compilation Error

Luke Ren created ASTERIXDB-2893:
-----------------------------------

             Summary: Operator/UDF on FuzzyJoin raises Compilation Error
                 Key: ASTERIXDB-2893
                 URL: https://issues.apache.org/jira/browse/ASTERIXDB-2893
             Project: Apache AsterixDB
          Issue Type: Bug
          Components: COMP - Compiler, FUN - Functions
    Affects Versions: 0.9.7
            Reporter: Luke Ren


If you try something like:

SELECT a, b 

FROM FuzzyA a, FuzzyB b

WHERE NOT (a.text ~= b.text)

or 

SELECT a, b 

FROM FuzzyA a, FuzzyB b

WHERE echo(a.text ~= b.text)

""" pythonlib.py

def echo(a):

    return a

"""

The exception: "Compilation error: Inappropriate use of function 'fuzzy-eq'" is raised.



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