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
We were previously inferring the wrong default value for char columns.
Char columns are padded with spaces to the column length. Instead of
returning an empty string, we now return a string of spaces.
Closes: REA-5699
Closes: #1503
Release-Note-Core: Fixed issue where char columns were not padded with
spaces when using MRBR and being omitted from the insert.
Change-Id: Icc0842269fa6d9644783888bbc708b3e7776f666
Reviewed-on: https://gerrit.readyset.name/c/readyset/+/9289
Tested-by: Buildkite CI
Reviewed-by: Michael Zink <michael.z@readyset.io>
// This test will create a table without PK. The insert will ommit column n, since we are using MRBR it will be deferred to Readyset to fill in the default value.
4150
+
// Then we will update the column and ensure that the update is replicated correctly. Because the table has no PK, this will be a full row delete followed by an insert.
4151
+
// If we did not chose the right default value, the delete will fail.
0 commit comments