(b *testing.B)
| 1620 | } |
| 1621 | |
| 1622 | func BenchmarkSelect2(b *testing.B) { |
| 1623 | bt := WithTemplate(&testTemplate) |
| 1624 | for n := 0; n < b.N; n++ { |
| 1625 | _ = bt.Select("id").From("artist").Where(`name LIKE ? OR name LIKE ?`, `%Miya%`, `F%`).String() |
| 1626 | } |
| 1627 | } |
| 1628 | |
| 1629 | func BenchmarkSelect3(b *testing.B) { |
| 1630 | bt := WithTemplate(&testTemplate) |
nothing calls this directly
no test coverage detected