Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sql: mark timezone(string, string) as VolatilityStable
The `timezone(string, string)` function overload was incorrectly marked as `VolatilityImmutable`. When the second argument a special string, like 'now', 'today', 'tomorrow', or 'yesterday', the function is non-immutable because those strings are cast to timestamps which are dependent on the current clock time. This commit correctly marks it as `VolatilityStable`. Release note: None
- Loading branch information