Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CBRD-25573] Modified PL/CSQL sql test case for Check SP call semantics considering default values of SP arguments #2010

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

junsklee
Copy link
Contributor

Refer to: http://jira.cubrid.org/browse/CBRD-25573

Note: .answer 파일은 본 이슈가 머지가 된 이후에 수정될 예정입니다.

…cs considering default values of SP arguments
@swi0110
Copy link
Contributor

swi0110 commented Dec 26, 2024

아래의 시나리오를 추가하는 것을 고려 부탁드립니다.
dba 계정에서 public.test_proc7을 호출하는 시나리오입니다.

create or replace procedure public.test_proc7(a int := 1, b int := 9) as
begin
    DBMS_OUTPUT.put_line('proc7 params: ' || a || ', ' || b);
end;

create or replace procedure test_proc8() as
begin
    public.test_proc7();
end;

call test_proc8();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants