Skip to content
This repository has been archived by the owner on Aug 1, 2022. It is now read-only.

[Processor] - missing processor for .hdbscalarfunction #352

Closed
antoanetamh opened this issue Jul 22, 2021 · 1 comment · Fixed by #409
Closed

[Processor] - missing processor for .hdbscalarfunction #352

antoanetamh opened this issue Jul 22, 2021 · 1 comment · Fixed by #409
Assignees
Labels
Projects
Milestone

Comments

@antoanetamh
Copy link
Contributor

antoanetamh commented Jul 22, 2021

Check if similar to tableFunctions.

function "SAP_INO"."sap.ino.db.basis::f_last_delimited_substring" ( iv_string varchar(1024), iv_delimiter char) 
    returns result varchar(1024)
    language sqlscript
    sql security definer as
begin
    declare lv_delimiter_index int := 0;

    declare lv_index int := 0;
    declare lv_length int := length(:iv_string);

    for lv_index in 0 .. (lv_length -1) do
        if(substring(:iv_string, lv_index, 1) = :iv_delimiter) then 
            lv_delimiter_index := lv_index;
        end if;
    end for;

    result := substring(iv_string, lv_delimiter_index + 1, lv_length - lv_delimiter_index);
end;
@antoanetamh antoanetamh added this to To do in Backlog via automation Jul 22, 2021
@antoanetamh antoanetamh added this to the 0.8.0 milestone Jul 22, 2021
@antoanetamh antoanetamh added the customer customer projects label Jul 22, 2021
@ThuF ThuF moved this from To do to Sprint in Backlog Aug 11, 2021
@Wildflowerr Wildflowerr self-assigned this Aug 17, 2021
@antoanetamh antoanetamh moved this from Sprint to In progress in Backlog Aug 18, 2021
@Wildflowerr
Copy link
Contributor

Fixed with 8b37637

Backlog automation moved this from In progress to Done Aug 20, 2021
@ThuF ThuF moved this from Done to 0.8.0 in Backlog Aug 27, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
No open projects
Backlog
0.8.0
Development

Successfully merging a pull request may close this issue.

3 participants