mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-10 13:10:33 +08:00
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