qb: update, delete and performance improvements

This commit is contained in:
Michał Matczuk
2017-07-27 09:48:33 +02:00
parent 5db5de8822
commit 69dad13e4b
10 changed files with 486 additions and 15 deletions

View File

@@ -69,6 +69,6 @@ func TestInsertBuilder(t *testing.T) {
func BenchmarkInsertBuilder(b *testing.B) {
b.ResetTimer()
for i := 0; i < b.N; i++ {
Insert("foo").Columns("name", "age", "first", "last").ToCql()
Insert("cycling.cyclist_name").Columns("id", "user_uuid", "firstname", "stars")
}
}