-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
sql: remove type width enforcement during execution #75906
sql: remove type width enforcement during execution #75906
Conversation
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.
LGTM, i'll let radu sign off
@@ -148,18 +148,9 @@ func GenerateInsertRow( | |||
|
|||
// Verify the column constraints. | |||
// | |||
// We would really like to use enforceLocalColumnConstraints() here, | |||
// but this is not possible because of some brain damage in the |
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.
brain damage!
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.
Reviewable status: complete! 1 of 0 LGTMs obtained
TFTRs! bors r+ |
Build failed (retrying...): |
02c4db9
to
f00eaed
Compare
Canceled. |
f00eaed
to
dc6e740
Compare
TFTRs! bors r+ |
Build failed (retrying...): |
Build failed (retrying...): |
Build failed (retrying...): |
Build failed (retrying...): |
Build failed: |
Assignment casts are now responsible for ensuring that a value written to a column has a type and width that match the column type. This commit removes the logic that performed this validation before assignment casts existed. Release note: None
dc6e740
to
cc24310
Compare
Let's try this again. bors r+ |
bors r+ |
Build succeeded: |
Assignment casts are now responsible for ensuring that a value written
to a column has a type and width that match the column type. This commit
removes the logic that performed this validation before assignment casts
existed.
Release note: None