(b *testing.B)
| 1634 | } |
| 1635 | |
| 1636 | func BenchmarkSelect4(b *testing.B) { |
| 1637 | bt := WithTemplate(&testTemplate) |
| 1638 | for n := 0; n < b.N; n++ { |
| 1639 | _ = bt.SelectFrom("artist").Join("publication p").On("p.author_id = a.id").Where("a.id = 2").Limit(1).String() |
| 1640 | } |
| 1641 | } |
| 1642 | |
| 1643 | func BenchmarkSelect5(b *testing.B) { |
| 1644 | t := WithTemplate(&testTemplate) |
nothing calls this directly
no test coverage detected