We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70c2d34 commit ffbaf59Copy full SHA for ffbaf59
src/substrait/sql/extended_expression.py
@@ -203,6 +203,7 @@ def _parse_function_invokation(
203
except KeyError:
204
# No function found with the exact types, try any1_any1 version
205
# TODO: What about cases like i32_any1? What about any instead of any1?
206
+ # TODO: What about optional arguments? IE: "i32_i32?"
207
signature = f"{function_name}:{'_'.join(['any1']*len(arguments))}"
208
function_anchor = self._functions_catalog.function_anchor(signature)
209
0 commit comments