Sql Expressions - remove references to poc database (#103618)

Sql Expressions - remove DuckDB references
pull/103624/head
Scott Lepper 1 month ago committed by GitHub
parent 9d22414522
commit aea8f27c59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      pkg/expr/query.go
  2. 2
      public/app/features/expressions/types.ts

@ -27,7 +27,7 @@ const (
// Threshold
QueryTypeThreshold QueryType = "threshold"
// SQL query via DuckDB
// SQL query
QueryTypeSQL QueryType = "sql"
)

@ -66,7 +66,7 @@ export const expressionTypes: Array<SelectableValue<ExpressionQueryType>> = [
{
value: ExpressionQueryType.sql,
label: 'SQL',
description: 'Transform data using SQL. Supports Aggregate/Analytics functions from DuckDB',
description: 'Transform data using SQL. Supports MySQL syntax.',
},
].filter((expr) => {
if (expr.value === ExpressionQueryType.sql) {

Loading…
Cancel
Save