Kyle Mok
02/07/2022, 4:49 PMRachel RIZK
02/08/2022, 3:37 PMcreated_at
and discarded_at
. setting the cursor on created_at
will capture records created but if it ends up becoming discarded
, we won't know. On the other hand if we track discarded_at
, we won't see when the record is created
. An option on our engineering side is to have an updated_at
field, but that may or may not be prioritized, so if we could coalesce(discarded_at, created_at)
as a cursor, that could help solve the problemgunu
02/09/2022, 4:03 AMTyler Buth
02/10/2022, 4:28 PMDave Lindley
02/11/2022, 7:03 PMArvi
02/14/2022, 4:29 PM