diff --git a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md index 66ca24087ad..48d57b65263 100644 --- a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md +++ b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md @@ -183,7 +183,7 @@ Experimental features might be changed or removed without prior notice. | `kubernetesFeatureToggles` | Use the kubernetes API for feature toggle management in the frontend | | `newFolderPicker` | Enables the nested folder picker without having nested folders enabled | | `scopeApi` | In-development feature flag for the scope api using the app platform. | -| `sqlExpressions` | Enables using SQL and DuckDB functions as Expressions. | +| `sqlExpressions` | Enables SQL Expressions, which can execute SQL queries against data source results. | | `nodeGraphDotLayout` | Changed the layout algorithm for the node graph | | `kubernetesAggregator` | Enable grafana's embedded kube-aggregator | | `expressionParser` | Enable new expression parser | diff --git a/pkg/services/featuremgmt/registry.go b/pkg/services/featuremgmt/registry.go index 45080db02f1..c42f344f4a3 100644 --- a/pkg/services/featuremgmt/registry.go +++ b/pkg/services/featuremgmt/registry.go @@ -1002,7 +1002,7 @@ var ( }, { Name: "sqlExpressions", - Description: "Enables using SQL and DuckDB functions as Expressions.", + Description: "Enables SQL Expressions, which can execute SQL queries against data source results.", Stage: FeatureStageExperimental, FrontendOnly: false, Owner: grafanaDatasourcesCoreServicesSquad, diff --git a/pkg/services/featuremgmt/toggles_gen.go b/pkg/services/featuremgmt/toggles_gen.go index d9dcfd8603a..739f826d187 100644 --- a/pkg/services/featuremgmt/toggles_gen.go +++ b/pkg/services/featuremgmt/toggles_gen.go @@ -536,7 +536,7 @@ const ( FlagLogQLScope = "logQLScope" // FlagSqlExpressions - // Enables using SQL and DuckDB functions as Expressions. + // Enables SQL Expressions, which can execute SQL queries against data source results. FlagSqlExpressions = "sqlExpressions" // FlagNodeGraphDotLayout diff --git a/pkg/services/featuremgmt/toggles_gen.json b/pkg/services/featuremgmt/toggles_gen.json index ac910ee0efd..d4685e9017b 100644 --- a/pkg/services/featuremgmt/toggles_gen.json +++ b/pkg/services/featuremgmt/toggles_gen.json @@ -3816,7 +3816,7 @@ } }, "spec": { - "description": "Enables using SQL and DuckDB functions as Expressions.", + "description": "Enables SQL Expressions, which can execute SQL queries against data source results.", "stage": "experimental", "codeowner": "@grafana/grafana-datasources-core-services" }