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

Sql Expressions - remove DuckDB references
This commit is contained in:
Scott Lepper 2025-04-08 10:59:19 -04:00 committed by GitHub
parent 9d22414522
commit aea8f27c59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

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

View File

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