aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/ClickHouse/clickhouse-go/result.go
blob: fc08cf4dc41aa3ecde16f383d2dd8b9fc683fdd7 (plain) (blame)
1
2
3
4
5
6
7
8
package clickhouse

import "errors"

type result struct{}

func (*result) LastInsertId() (int64, error) { return 0, errors.New("LastInsertId is not supported") }
func (*result) RowsAffected() (int64, error) { return 0, errors.New("RowsAffected is not supported") }