mirror of
https://github.com/grafana/grafana.git
synced 2025-09-18 22:53:51 +08:00
SQL Expressions: Permit range conditions (between) in queries (#103238)
This commit is contained in:
@ -132,6 +132,9 @@ func allowedNode(node sqlparser.SQLNode) (b bool) {
|
||||
case *sqlparser.ParenExpr:
|
||||
return
|
||||
|
||||
case *sqlparser.RangeCond:
|
||||
return
|
||||
|
||||
case *sqlparser.Subquery:
|
||||
return
|
||||
|
||||
|
Reference in New Issue
Block a user