Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NOW() does not respect timezone changes within current session #16820

Closed
systay opened this issue Sep 23, 2024 · 0 comments · Fixed by #16824
Closed

NOW() does not respect timezone changes within current session #16820

systay opened this issue Sep 23, 2024 · 0 comments · Fixed by #16824

Comments

@systay
Copy link
Collaborator

systay commented Sep 23, 2024

When the timezone is set on the current sessions, it's not respected if the query is executed on vtgate.

> SET time_zone = '+10:00';
Query OK, 0 rows affected (0.00 sec)

> SELECT @@session.time_zone;
+---------------------+
| @@session.time_zone |
+---------------------+
| +10:00              |
+---------------------+
1 row in set (0.00 sec)

mysql> SELECT UTC_TIMESTAMP(), NOW();
+---------------------+---------------------+
| UTC_TIMESTAMP       | NOW()               |
+---------------------+---------------------+
| 2024-09-23 07:22:42 | 2024-09-23 07:22:42 |
+---------------------+---------------------+
1 row in set (0.00 sec)

In this example, NOW() should not return the same value as UTC_TIMESTAMP()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant