(b *testing.B)
| 43 | } |
| 44 | |
| 45 | func BenchmarkInsertValuesSQL(b *testing.B) { |
| 46 | buf := NewBuffer() |
| 47 | for i := 0; i < b.N; i++ { |
| 48 | InsertInto("table").Columns("a", "b").Values(1, "one").Build(dialect.MySQL, buf) |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | func BenchmarkInsertRecordSQL(b *testing.B) { |
| 53 | buf := NewBuffer() |
nothing calls this directly
no test coverage detected
searching dependent graphs…