-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Improve procedure metadata lookup logic (#862)
When using `@cap-js/hana` it is possible to send `SQL` statements like: ```sql CALL PROC() CALL SYS.PROC() CALL "PROC"() CALL "SYS"."PROC"() ``` With this change it is also possible to call procedures outside of the current schema or sys schema like: ```sql CALL SCHEMA.PROC() CALL "SCHEMA"."PROC"() CALL "Schema"."Proc"() ``` The logic always was case sensitive for the procedure name therefor the same is applied to the schema name. This only applies to the metadata lookup for improved output parameter handling. As the native HANA drivers don't behave the same for procedure. fixes: #859
- Loading branch information
Showing
1 changed file
with
14 additions
and
12 deletions.
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