statement-bundle file=bundle
----

opt
SELECT * FROM a WHERE a > 10 AND b < 5
---
----
select
 ├── columns: a:1(int!null) b:2(int!null)
 ├── key: (1)
 ├── fd: (1)-->(2)
 ├── scan a
 │    ├── columns: a:1(int!null) b:2(int)
 │    ├── constraint: /1: [/11 - ]
 │    ├── key: (1)
 │    └── fd: (1)-->(2)
 └── filters
      └── lt [type=bool, outer=(2), constraints=(/2: (/NULL - /4]; tight)]
           ├── variable: b:2 [type=int]
           └── const: 5 [type=int]
