-
Bug
-
Resolution: Done
-
Major
-
None
-
None
With two sources, MODEL1 and MODEL2, with a function on MODEL1:
CREATE FOREIGN FUNCTION "dbo.examplefunc"(col1 string, col2 date, col3 boolean) returns bigdecimal;
A query of the function against only a table on MODEL2 will fail with "cannot be pushed to source":
SELECT MODEL1."dbo.examplefunc"(TAB1.STRINGCOL, TAB1.DATE, TRUE) FROM MODEL2.TABLE1 TAB1