mirror of https://github.com/grafana/grafana.git
Sql Expressions - remove references to poc database (#103618)
Sql Expressions - remove DuckDB references
This commit is contained in:
parent
9d22414522
commit
aea8f27c59
|
@ -27,7 +27,7 @@ const (
|
||||||
// Threshold
|
// Threshold
|
||||||
QueryTypeThreshold QueryType = "threshold"
|
QueryTypeThreshold QueryType = "threshold"
|
||||||
|
|
||||||
// SQL query via DuckDB
|
// SQL query
|
||||||
QueryTypeSQL QueryType = "sql"
|
QueryTypeSQL QueryType = "sql"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -66,7 +66,7 @@ export const expressionTypes: Array<SelectableValue<ExpressionQueryType>> = [
|
||||||
{
|
{
|
||||||
value: ExpressionQueryType.sql,
|
value: ExpressionQueryType.sql,
|
||||||
label: 'SQL',
|
label: 'SQL',
|
||||||
description: 'Transform data using SQL. Supports Aggregate/Analytics functions from DuckDB',
|
description: 'Transform data using SQL. Supports MySQL syntax.',
|
||||||
},
|
},
|
||||||
].filter((expr) => {
|
].filter((expr) => {
|
||||||
if (expr.value === ExpressionQueryType.sql) {
|
if (expr.value === ExpressionQueryType.sql) {
|
||||||
|
|
Loading…
Reference in New Issue