RESET Statements

RESET statements are used to reset the configuration to the default.

Run a RESET statement

SQL CLI

RESET statements can be executed in SQL CLI.

The following examples show how to run a RESET statement in SQL CLI.

SQL CLI

  1. Flink SQL> RESET 'table.planner';
  2. [INFO] Session property has been reset.
  3. Flink SQL> RESET;
  4. [INFO] All session properties have been set to their default values.

Syntax

  1. RESET ('key')?

If no key is specified, it reset all the properties to the default. Otherwise, reset the specified key to the default.

Back to top