(self)
| 931 | ) |
| 932 | |
| 933 | def test_a_to_b_plain(self): |
| 934 | A, B = self.classes("A", "B") |
| 935 | |
| 936 | # should not use aliasing or adaption so should be cheap |
| 937 | @profiling.function_call_count(times=50, warmup=1) |
| 938 | def go(): |
| 939 | orm_join(A, B, A.b) |
| 940 | |
| 941 | go() |
| 942 | |
| 943 | def test_a_to_b_aliased(self): |
| 944 | A, B = self.classes("A", "B") |