-
Notifications
You must be signed in to change notification settings - Fork 29
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-25352] Add a user schema to your stored procedures for consistency with other objects. #678
Merged
jongmin-won
merged 3 commits into
CUBRID:develop
from
jongmin-won:feature/plcsql-CBRD-25352-testtools
Jul 30, 2024
Merged
[CBRD-25352] Add a user schema to your stored procedures for consistency with other objects. #678
jongmin-won
merged 3 commits into
CUBRID:develop
from
jongmin-won:feature/plcsql-CBRD-25352-testtools
Jul 30, 2024
Conversation
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
…_output.' to ensure normal execution. For example, 'call get_line;' -> 'call dbms_output.get_line;'
|
hyunikn
reviewed
Jul 26, 2024
hyunikn
reviewed
Jul 26, 2024
hyunikn
reviewed
Jul 26, 2024
CTP/sql/src/com/navercorp/cubridqa/cqt/console/bo/ConsoleBO.java
Outdated
Show resolved
Hide resolved
…ovided a way to bypass it and adjusted the java code style.
hgryoo
approved these changes
Jul 26, 2024
hyunikn
approved these changes
Jul 26, 2024
…uting cci, so that code was removed.
ssihil
approved these changes
Jul 29, 2024
kwonhoil
approved these changes
Jul 30, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
http://jira.cubrid.org/browse/CBRD-25352
Built-in PL/CSQL을 호출할 때는 'dbms_output.'을 붙여야 정상 실행됩니다.
ex) 'call get_line;' -> 'call dbms_output.get_line;'
해당 PR이 merge되면 기존 phase-0가 merge된 develop branch에 영향을 미칩니다.
따라서 phase-1가 merge될 때까지 임시로 catch 문 안에서 DBMS_OUTPUT. 을 제거한 Built-in PL/CSQL을 한 번 더 수행하도록 CTE를 수정했습니다.
향후 phase-1 feature branch가 merge 되면 다시 제거할 계획입니다.