SQL Expressions: Permit range conditions (between) in queries (#103238)

This commit is contained in:
Kyle Brandt
2025-04-02 08:13:17 -04:00
committed by GitHub
parent 85ddf648dc
commit 856dcfd6fe
2 changed files with 8 additions and 0 deletions

View File

@ -132,6 +132,9 @@ func allowedNode(node sqlparser.SQLNode) (b bool) {
case *sqlparser.ParenExpr:
return
case *sqlparser.RangeCond:
return
case *sqlparser.Subquery:
return