mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-14 22:56:34 +00:00
9 lines
265 B
Go
9 lines
265 B
Go
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") }
|