-
Notifications
You must be signed in to change notification settings - Fork 126
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-24544] not allow to alter the column type to a type that does not support auto-increment. #3925
Merged
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
…ot support auto-increment.
The failed Test cases should be modified as changed specification for modifying column type having auto-increment attribute. |
ctshim
approved these changes
Nov 3, 2022
hgryoo
approved these changes
Nov 3, 2022
hyunikn
reviewed
Nov 3, 2022
shparkcubrid
approved these changes
Nov 4, 2022
youngjinj
approved these changes
Nov 4, 2022
hyunikn
approved these changes
Nov 7, 2022
beyondykk9
added a commit
to beyondykk9/cubrid
that referenced
this pull request
Mar 20, 2023
…ot support auto-increment. (CUBRID#3925) http://jira.cubrid.org/browse/CBRD-24544
beyondykk9
added a commit
to beyondykk9/cubrid
that referenced
this pull request
Mar 22, 2023
…ot support auto-increment. (CUBRID#3925) http://jira.cubrid.org/browse/CBRD-24544
beyondykk9
added a commit
that referenced
this pull request
Mar 23, 2023
…ot support auto-increment. (#3925) (#4192) http://jira.cubrid.org/browse/CBRD-24544 This is a backport of #3925
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-24544
In DB table, the column type can be altered to any DB type, however, if the column has an auto-increment attribute the type altering should be checked severly not to allow non numeric type.
The above "ALTER" command must not be allowed because the auto-increment doesn't work properly.
If the auto-increment column type is overflown as altering the type, the ALTER command results error as following message:
ERROR: Start value of an auto increment constraint should be less then max value.
Example: