Skip to content

Commit

Permalink
fix: index_in has wrong return type (#632)
Browse files Browse the repository at this point in the history
`index_in` is currently declared as returning an `int64`,
the return type should be `i64`, as according to
https://substrait.io/types/type_classes/#simple-types 
there is no int64 type.
  • Loading branch information
amol- authored Apr 18, 2024
1 parent 0bddf68 commit 4cd2089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/functions_set.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ scalar_functions:
nan_equality:
values: [ NAN_IS_NAN, NAN_IS_NOT_NAN ]
nullability: DECLARED_OUTPUT
return: int64?
return: i64?

0 comments on commit 4cd2089

Please sign in to comment.