-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
storage: fix local_call not finding C stored procedures
Currently, if function was created as C stored procedure with box.schema.func.create, all types of router.call and router.map_callrw cannot find it and return `Procedure 'name' is not defined` error. This is cased by the fact that both of these function use local_call, which invokes net_box.self.call, which doesn't currently work with C stored procedures due to the bug. Let's use box.func, where it's possible instead of net_box.self.call in local_call. Closes #436 NO_DOC=bugfix NO_TEST=<already tested>
- Loading branch information
1 parent
b3c27b3
commit 8e4d403
Showing
2 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters