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)