Add missing batch API (#325)

Some of gocql.Batch API are not present in the gocqlx.Batch.
We need to have them implemented and have a test to make sure no API has
forgotten.
This commit is contained in:
Dmitry Kropachev
2025-06-11 06:16:31 -04:00
committed by GitHub
parent d6db570d31
commit efee4798d6
3 changed files with 101 additions and 1 deletions

View File

@@ -212,7 +212,7 @@ func TestQueryxBindMap(t *testing.T) {
})
}
func TestQyeryxAllWrapped(t *testing.T) {
func TestQueryxAllWrapped(t *testing.T) {
var (
gocqlQueryPtr = reflect.TypeOf((*gocql.Query)(nil))
queryxPtr = reflect.TypeOf((*Queryx)(nil))