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
Describe the bug
A clear and concise description of what the bug is.
select now();
-- ... 3 days later ...select now(); -- returns same old value
It's correctly caching now() so it returns the same value when used multiple times in the same query, but it shouldn't be caching the value past statement execution, correct?
To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
Would expect now() to return the same value for all instances in the same query, but a new value for a new statement in the same runtime context.
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
It's correctly caching now() so it returns the same value when used multiple times in the same query, but it shouldn't be caching the value past statement execution, correct?
Describe the bug
A clear and concise description of what the bug is.
It's correctly caching now() so it returns the same value when used multiple times in the same query, but it shouldn't be caching the value past statement execution, correct?
To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
Would expect now() to return the same value for all instances in the same query, but a new value for a new statement in the same runtime context.
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: