(field1, field2, table, join=LEFT)
| 1161 | FULL = "full" # All rows form both tables. |
| 1162 | |
| 1163 | def relation(field1, field2, table, join=LEFT): |
| 1164 | return (field1, field2, table, join) |
| 1165 | |
| 1166 | # Sorting: |
| 1167 | ASCENDING = "asc" |
no outgoing calls
no test coverage detected
searching dependent graphs…