mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 14:43:49 +08:00
SQL Expressions: Allow IS
keyword (#102841)
This commit is contained in:
@ -93,6 +93,9 @@ func allowedNode(node sqlparser.SQLNode) (b bool) {
|
||||
case *sqlparser.Into:
|
||||
return
|
||||
|
||||
case *sqlparser.IsExpr:
|
||||
return
|
||||
|
||||
case *sqlparser.JoinTableExpr, sqlparser.JoinCondition:
|
||||
return
|
||||
|
||||
|
Reference in New Issue
Block a user