Use existing nonzero values in autoincr fields instead of overwriting with new autoincr value#29
Open
sqs wants to merge 1 commit intojmoiron:masterfrom
sqs:Use-nonzero-values-in-autoincr-fields
Open
Use existing nonzero values in autoincr fields instead of overwriting with new autoincr value#29sqs wants to merge 1 commit intojmoiron:masterfrom sqs:Use-nonzero-values-in-autoincr-fields
sqs wants to merge 1 commit intojmoiron:masterfrom
sqs:Use-nonzero-values-in-autoincr-fields
Conversation
… with new autoincr value Previously, if a field mapped to an auto-incremented column, its value was thrown away during inserts and was replaced by the auto-incremented value reported by the database. This commit changes that behavior. Now, if the field value is nonzero, the existing value is inserted into the database and the auto-incrementing sequence is not used. If the field value is 0, the previous behavior still applies. This breaks code that expects modl to overwrite nonzero autoincr fields with the next value from the auto-incrementing sequence.
Owner
|
I'm going to look into this tomorrow, specifically answering question 1 and figuring out the ways it might break existing code so I can document it. Superficially, it seems like the behavioral change of just using the supplied ID is the only thing, but I'll look into it a bit deeper. Great change though, I totally agree with this behavior. |
Contributor
Author
|
Just a friendly follow-up to see if you've had a chance to look into those things. |
Owner
|
Sorry for the delay @sqs! I'm going on holiday in a few days which actually means I'll have plenty of downtime to really go through this and make sure it's all right. |
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.
Previously, if a field mapped to an auto-incremented column, its value
was thrown away during inserts and was replaced by the
auto-incremented value reported by the database. This commit changes
that behavior. Now, if the field value is nonzero, the existing value
is inserted into the database and the auto-incrementing sequence is
not used. If the field value is 0, the previous behavior still
applies.
This breaks code that expects modl to overwrite nonzero autoincr
fields with the next value from the auto-incrementing sequence.
Motivation: When writing tests for code that uses modl, it's nice to be able to insert rows with a known ID, as opposed to having to insert it and then read it back to see the ID. Also, if you need to insert something with a known ID in your application, you need to use raw SQL (or create a new DbMap without the key's autoincr prop set) because there is currently no way to do so in modl.
All tests pass for me (PostgreSQL, MySQL, SQLite3) ✅
Issues/questions for @jmoiron: