Returns a criterion that checks if array length equals the given value
(field: Term, value: int)
| 27 | |
| 28 | |
| 29 | def postgres_array_length(field: Term, value: int) -> Criterion: |
| 30 | """Returns a criterion that checks if array length equals the given value""" |
| 31 | return Function("array_length", field, 1).eq(value) |
nothing calls this directly
no test coverage detected
searching dependent graphs…