scylladb / gocql

Package gocql implements a fast and robust ScyllaDB client for the Go programming language.
https://docs.scylladb.com/stable/using-scylla/drivers/cql-drivers/scylla-go-driver.html
BSD 3-Clause "New" or "Revised" License
169 stars 47 forks source link

Make public interfaces implementable #184

Closed dkropachev closed 1 month ago

dkropachev commented 1 month ago

currently private interface token directly or indirectly present in lot's of interfaces and therefore makes them unimplementable: SelectedHost, ExecutableQuery, HostSelectionPolicy, NextHost

To fix it we need to make all parts of interfaces be public Closes #183