()
| 1142 | ) |
| 1143 | |
| 1144 | def seven(): |
| 1145 | # lambda statements don't collect bindparameter objects |
| 1146 | # for fixed values, has to be in a variable |
| 1147 | value = random.randint(10, 20) |
| 1148 | return lambda_stmt(lambda: select(table_a)) + ( |
| 1149 | lambda s: s.where(table_a.c.a == value) |
| 1150 | ) |
| 1151 | |
| 1152 | from sqlalchemy.sql import lambdas |
| 1153 |
nothing calls this directly
no test coverage detected