File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
plugin/src/main/java/org/opensearch/sql/plugin/rest Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -35,11 +35,16 @@ public class RestQuerySettingsAction extends BaseRestHandler {
3535 private static final String TRANSIENT = "transient" ;
3636 private static final String SQL_SETTINGS_PREFIX = "plugins.sql." ;
3737 private static final String PPL_SETTINGS_PREFIX = "plugins.ppl." ;
38+ private static final String CALCITE_SETTINGS_PREFIX = "plugins.calcite." ;
3839 private static final String COMMON_SETTINGS_PREFIX = "plugins.query." ;
3940 private static final String EXECUTION_ENGINE_SETTINGS_PREFIX = "plugins.query.executionengine" ;
4041 public static final String DATASOURCES_SETTINGS_PREFIX = "plugins.query.datasources" ;
4142 private static final List <String > SETTINGS_PREFIX =
42- ImmutableList .of (SQL_SETTINGS_PREFIX , PPL_SETTINGS_PREFIX , COMMON_SETTINGS_PREFIX );
43+ ImmutableList .of (
44+ SQL_SETTINGS_PREFIX ,
45+ PPL_SETTINGS_PREFIX ,
46+ COMMON_SETTINGS_PREFIX ,
47+ CALCITE_SETTINGS_PREFIX );
4348
4449 private static final List <String > DENY_LIST_SETTINGS_PREFIX =
4550 ImmutableList .of (EXECUTION_ENGINE_SETTINGS_PREFIX , DATASOURCES_SETTINGS_PREFIX );
You can’t perform that action at this time.
0 commit comments