You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make ExcludedCol work with fields and use them when constructing SET clause
The recent changes to add support for custom update values had a side
effect that upserts with PostGIS related fields would break.
They would break while building the `SET` clause. Django would try to
figure out the right placeholder for the expression, even though
none is required. Since there was not associated field information,
it couldn't figure it out.
By passing the field information, we ensure we always build the SET
clause correctly.
0 commit comments