aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/ClickHouse/clickhouse-go/clickhouse_progress.go
blob: 2ccc5fd942ce6ac95e0261add6103ab4eed9ce44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package clickhouse

type progress struct {
	rows      uint64
	bytes     uint64
	totalRows uint64
}

func (ch *clickhouse) progress() (*progress, error) {
	var (
		p   progress
		err error
	)
	if p.rows, err = ch.decoder.Uvarint(); err != nil {
		return nil, err
	}
	if p.bytes, err = ch.decoder.Uvarint(); err != nil {
		return nil, err
	}

	if p.totalRows, err = ch.decoder.Uvarint(); err != nil {
		return nil, err
	}

	return &p, nil
}