Documentation ¶
Index ¶
- Variables
- func Escape(s string) string
- func Post(ctx context.Context, dsn string, query string, postBody io.Reader, ...) ([]byte, error)
- func PostGzip(ctx context.Context, dsn string, query string, postBody io.Reader, ...) ([]byte, error)
- func Query(ctx context.Context, dsn string, query string, timeout time.Duration) ([]byte, error)
- func ReadUvarint(array []byte) (uint64, int, error)
- type TestHandler
- type TestRequest
- type TestServer
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrClickHouseResponse = errors.New("Malformed response from clickhouse")
View Source
var ErrUvarintOverflow = errors.New("ReadUvarint: varint overflows a 64-bit integer")
View Source
var ErrUvarintRead = errors.New("ReadUvarint: Malformed array")
Functions ¶
Types ¶
type TestHandler ¶ added in v0.3.0
func (*TestHandler) ServeHTTP ¶ added in v0.3.0
func (h *TestHandler) ServeHTTP(w http.ResponseWriter, r *http.Request)
type TestRequest ¶ added in v0.3.0
type TestRequest struct {
Query []byte
}
type TestServer ¶ added in v0.3.0
func NewTestServer ¶ added in v0.3.0
func NewTestServer() *TestServer
func (*TestServer) Requests ¶ added in v0.3.0
func (srv *TestServer) Requests() []TestRequest
Click to show internal directories.
Click to hide internal directories.