RESET restores run-time parameters to their default values. The default values are parameter default values complied in the postgresql.conf configuration file.
RESET is an alternative spelling for:
SET configuration_parameter TO DEFAULT
RESET and SET have the same transaction behavior. Their impact will be rolled back.
RESET {configuration_parameter | CURRENT_SCHEMA | TIME ZONE | TRANSACTION ISOLATION LEVEL | SESSION AUTHORIZATION | ALL };
Specifies the name of a settable run-time parameter.
Value range: Run-time parameters. You can view them by running the SHOW ALL command.
Some parameters that viewed by SHOW ALL cannot be set by SET. For example, max_datanodes.
Specifies the current schema.
Specifies the time zone.
Specifies the transaction isolation level.
Specifies the session authorization.
Resets all settable run-time parameters to default values.
Reset timezone to the default value.
1 | RESET timezone; |
Set all parameters to their default values.
1 | RESET ALL; |