SQL Expressions: Update comment for flag definition (#101919)

Update comment for SQL Expressions flag definition
This commit is contained in:
Sam Jewell
2025-03-11 09:59:23 +00:00
committed by GitHub
parent 14ad1dec38
commit dd5db23123
4 changed files with 4 additions and 4 deletions

View File

@ -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 |

View File

@ -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,

View File

@ -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

View File

@ -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"
}