Skip to content

Latest commit

 

History

History
95 lines (61 loc) · 2.44 KB

lowApi.md

File metadata and controls

95 lines (61 loc) · 2.44 KB

chdbstable

import "github.com/chdb-io/chdb-go/chdbstable"

Index

LocalResult mirrors the C struct local_result in Go.

type LocalResult struct {
    // contains filtered or unexported fields
}

func QueryStable(argc int, argv []string) *LocalResult

QueryStable calls the C function query_stable.

func (*LocalResult) Buf

func (r *LocalResult) Buf() []byte

Accessor methods to access fields of the local_result struct.

func (*LocalResult) BytesRead

func (r *LocalResult) BytesRead() uint64

func (*LocalResult) Elapsed

func (r *LocalResult) Elapsed() float64

func (*LocalResult) Len

func (r *LocalResult) Len() int

func (*LocalResult) RowsRead

func (r *LocalResult) RowsRead() uint64

func (LocalResult) String

func (r LocalResult) String() string

Stringer interface for LocalResult

Generated by gomarkdoc