[CBRD-25862] Remove change_serial_owner method from db_serial#6836
Open
kangmin5505 wants to merge 3 commits intoCUBRID:developfrom
Open
[CBRD-25862] Remove change_serial_owner method from db_serial#6836kangmin5505 wants to merge 3 commits intoCUBRID:developfrom
kangmin5505 wants to merge 3 commits intoCUBRID:developfrom
Conversation
Contributor
Author
|
/run all |
There was a problem hiding this comment.
Pull request overview
Removes the temporary change_serial_owner class method exposure from the db_serial system view definition, aligning with the decision to not provide this functionality via db_serial (and rely on ALTER SERIAL ... OWNER TO ... instead).
Changes:
- Deleted the temporary
change_serial_ownerclass method entry from thedb_serialview schema definition. - Removed the accompanying temporary-compatibility comment block.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
jongmin-won
approved these changes
Feb 10, 2026
beyondykk9
approved these changes
Feb 10, 2026
ctshim
approved these changes
Feb 10, 2026
Contributor
Author
|
/run all |
Contributor
Author
|
실패한 테스트에 대한 수정은 |
childyouth
approved these changes
Feb 13, 2026
This file contains hidden or 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
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-25862
Purpose
사용자가
db_serial뷰를 통해change_serial_owner메소드를 수행할 수 있도록 기능을 제공했지만,일반 사용자(DBA/DBA 그룹이 아닌 사용자)는
change_serial_owner를 사용하지 못하고 SQL 구문(ALTER SERIAL ... OWNER TO ...)으로 해당 기능을 제공하고 있기에,회의에서 해당 기능을 제공하지 않기로 했습니다.
Remark