From 0ff150112916bb22fbdc2428aba53f2af0155541 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20Eeden?= Date: Tue, 27 Jul 2021 11:18:39 +0200 Subject: [PATCH] configure-time-zone: mention `system_time_zone` ``` mysql> SELECT @@global.time_zone, @@session.time_zone, @@global.system_time_zone; +--------------------+---------------------+---------------------------+ | @@global.time_zone | @@session.time_zone | @@global.system_time_zone | +--------------------+---------------------+---------------------------+ | SYSTEM | SYSTEM | UTC | +--------------------+---------------------+---------------------------+ 1 row in set (0.17 sec) ``` --- configure-time-zone.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure-time-zone.md b/configure-time-zone.md index e46147e0bea8c..246e226ca16cc 100644 --- a/configure-time-zone.md +++ b/configure-time-zone.md @@ -28,12 +28,12 @@ Each client has its own time zone setting, given by the session `time_zone` vari SET time_zone = timezone; ``` -You can use the following statement to view the current values of the global and client-specific time zones: +You can use the following statement to view the current values of the global, client-specific and system time zones: {{< copyable "sql" >}} ```sql -SELECT @@global.time_zone, @@session.time_zone; +SELECT @@global.time_zone, @@session.time_zone, @@global.system_time_zone; ``` To set the format of the value of the `time_zone`: