chore: remove clickhouse, added to zero-contrib (#2848)

This commit is contained in:
Kevin Wan
2023-02-11 15:28:59 +08:00
committed by GitHub
parent 0a5a26385d
commit d7d6eccce6
4 changed files with 0 additions and 53 deletions

View File

@@ -1,14 +0,0 @@
package clickhouse
import (
// imports the driver, don't remove this comment, golint requires.
_ "github.com/ClickHouse/clickhouse-go/v2"
"github.com/zeromicro/go-zero/core/stores/sqlx"
)
const clickHouseDriverName = "clickhouse"
// New returns a clickhouse connection.
func New(datasource string, opts ...sqlx.SqlOption) sqlx.SqlConn {
return sqlx.NewSqlConn(clickHouseDriverName, datasource, opts...)
}

View File

@@ -1,11 +0,0 @@
package clickhouse
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestClickHouse(t *testing.T) {
assert.NotNil(t, New("clickhouse"))
}