Skip to content

Commit

Permalink
configure-time-zone: mention system_time_zone (#6032)
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden authored Jul 29, 2021
1 parent 4fad44d commit 0b56ea9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure-time-zone.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down

0 comments on commit 0b56ea9

Please sign in to comment.