Hi I've read Sql Configuration guide https://ci.apache.org/projects/flink/flink-docs-release-1.11/dev/table/config.html#execution-options *which is very helpful to write sql like hive*
*example on our flink sql ide: * set table.exec.async-lookup.timeout = 3s; insert into xxx select * from xxx *what if I want to add new configuration for idleState retention time* java style: tableConfig.setIdleStateRetentionTime(Time.seconds(minSeconds), Time.seconds(maxSeconds)); *sql style we're need to support:* set sqlstate.idle.time.retention.mintime = 1min; insert into xxx select * from xxx *So my question is what's the suggested naming spc/guide/style for new tableConfiguration ?* *Is there any FLIP or doc for this?* Thanks