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 I understood the docs, the timestamp is derived from the updated_at timestamp at the record level. In my case, I have these set by ActiveRecord, so they are always available.
If I try to load a version at(time: <record.updated_at>), I am getting back nil. Somehow, the timestamps seem to be off by 1 millisecond after inspecting log_data. Simply adding 1 to the timestamp will yield the expected result, but I feel I am missing something here.
I simply want to grab the version based on the recorded updated_time. Any tips would be appreciated, thanks!
The text was updated successfully, but these errors were encountered:
We have an updated_at column already present on the entity table. Based on the docs, I thought logidze would attempt to always use this as the default strategy, otherwise defaulting to the statement ts.
I see the following in our sql trigger. Does this mean we have the right setting?
If I understood the docs, the timestamp is derived from the
updated_at
timestamp at the record level. In my case, I have these set by ActiveRecord, so they are always available.If I try to load a version
at(time: <record.updated_at>)
, I am getting backnil
. Somehow, the timestamps seem to be off by 1 millisecond after inspectinglog_data
. Simply adding 1 to the timestamp will yield the expected result, but I feel I am missing something here.I simply want to grab the version based on the recorded
updated_time
. Any tips would be appreciated, thanks!The text was updated successfully, but these errors were encountered: