(b *testing.B)
| 1641 | } |
| 1642 | |
| 1643 | func BenchmarkSelect5(b *testing.B) { |
| 1644 | t := WithTemplate(&testTemplate) |
| 1645 | b.ResetTimer() |
| 1646 | for n := 0; n < b.N; n++ { |
| 1647 | _ = t.SelectFrom("artist a"). |
| 1648 | LeftJoin("publication p1").On("p1.id = a.id"). |
| 1649 | RightJoin("publication p2").On("p2.id = a.id"). |
| 1650 | String() |
| 1651 | } |
| 1652 | } |
| 1653 | |
| 1654 | func BenchmarkUpdate1(b *testing.B) { |
| 1655 | bt := WithTemplate(&testTemplate) |
nothing calls this directly
no test coverage detected