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
unique_rowid() returns values that cannot be represented exactly by a number in Javascript. For example, 235191684988928001 is a recent value returned by unique_rowid() but in Javascript that is represented as 235191684988928000 (notice the last digit is different). The precision loss can then foul up Javascript application which temporarily stores the ID and then queries using it.
Reported by @mattiasmak. This is arguably a bug in the NodeJS driver.