RESET 语句
This documentation is for an unreleased version of Apache Flink. We recommend you use the latest stable version.

RESET 语句 #

RESET 语句用于将配置重置为默认值。

执行 RESET 语句 #

RESET 语句可以在 SQL CLI 中执行。

以下示例展示了如何在 SQL CLI 中执行一条 RESET 语句。

Flink SQL> RESET 'table.planner';
[INFO] Session property has been reset.

Flink SQL> RESET;
[INFO] All session properties have been set to their default values.

Syntax #

RESET ('key')?

如果未指定 key,则将所有属性重置为默认值。否则,将指定的 key 重置为默认值。

Back to top