mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-07-28 05:09:58 +00:00
STOR-519: Add db-connect, a SQL over HTTPS server
This commit is contained in:
8
vendor/github.com/kshvakov/clickhouse/result.go
generated
vendored
Normal file
8
vendor/github.com/kshvakov/clickhouse/result.go
generated
vendored
Normal file
@@ -0,0 +1,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") }
|
Reference in New Issue
Block a user