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
If schema 1-0-0 had { ..."fieldX": {"type" : [ "string"] ...} and schema 1-0-1 had { ..."fieldX": "type" : [ "string", null]...}, then loader would not generate the ALTER table statement (and it would also be illegal for RedShift). Instead table comment would be updated to the new 1-0-1 version, while fieldX would remain required (not nullable).
Consequently, all batches where events have fieldX is NULL would fail to load.
The text was updated successfully, but these errors were encountered:
If schema 1-0-0 had
{ ..."fieldX": {"type" : [ "string"] ...}
and schema 1-0-1 had{ ..."fieldX": "type" : [ "string", null]...}
, then loader would not generate the ALTER table statement (and it would also be illegal for RedShift). Instead table comment would be updated to the new 1-0-1 version, whilefieldX
would remain required (not nullable).Consequently, all batches where events have
fieldX
isNULL
would fail to load.The text was updated successfully, but these errors were encountered: