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 use in DB queries following condition: WHERE *.timestampLastUpdated < :timestamp.
Such condition is not reliable, because timestampLastUpdated is nullable. Furthermore, this may extend the timeout window, which is undesirable. We should use timestampCreated for expiration queries which is not null.
The text was updated successfully, but these errors were encountered:
We use in DB queries following condition:
WHERE *.timestampLastUpdated < :timestamp
.Such condition is not reliable, because
timestampLastUpdated
is nullable. Furthermore, this may extend the timeout window, which is undesirable. We should usetimestampCreated
for expiration queries which is not null.The text was updated successfully, but these errors were encountered: