Closed simonratner closed 8 years ago
Arithmetic operations on the return of r.now() affect all instances of r.now() in the query. For example, the following results in x == y:
r.now()
r.expr({ x: r.now(), y: r.now().add(1) })
Arithmetic operations on the return of
r.now()
affect all instances ofr.now()
in the query. For example, the following results in x == y: