We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When the timezone is set on the current sessions, it's not respected if the query is executed on vtgate.
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()
NOW()
UTC_TIMESTAMP()
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
When the timezone is set on the current sessions, it's not respected if the query is executed on
vtgate
.In this example,
NOW()
should not return the same value asUTC_TIMESTAMP()
The text was updated successfully, but these errors were encountered: