-
Notifications
You must be signed in to change notification settings - Fork 124
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-25707] With the addition of [user_schema] to SP, the --no-user-specified-name option of the loaddb utility has been fixed to function correctly, even when SPs are included in unload files from the past. #5659
base: feature/plcsql-p1n
Are you sure you want to change the base?
[CBRD-25707] With the addition of [user_schema] to SP, the --no-user-specified-name option of the loaddb utility has been fixed to function correctly, even when SPs are included in unload files from the past. #5659
Conversation
…e option of the loaddb utility has been fixed to function correctly, even when SPs are included in unload files from the past.
} | ||
|
||
goto end; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
다른 에러가 발생할 경우는 없나요?
/* unique_name must not be null. */ | ||
ASSERT_ERROR_AND_SET (error); | ||
goto end; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (DB_IS_NULL) 로 하는 게 읽기 편할 것 같습니다.
{ | ||
other_class_name[0] = '\0'; | ||
|
||
err = do_find_stored_procedure_by_query (name, other_class_name, DB_MAX_IDENTIFIER_LENGTH); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
err 처리는 안해도 되나요?
|
||
current_schema_name = sc_current_schema_name (); | ||
|
||
sp_name = sm_remove_qualifier_name (name); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sp_name이 NULL일 경우는 체크할 필요가 없을까요?
http://jira.cubrid.org/browse/CBRD-25707
Purpose
11.2v 이전 버전([user_schema]가 없는 버전)에서, View 테이블 내에 SP가 포함된 언로드 파일을 --no-user-specified-name 옵션과 함께 로드할 때 loaddb가 실패하는 문제를 수정했습니다.
Repro
Expected
Implementation
N/A
Remarks