revert postgres package refactor (#1796)
* Revert "refactor: move postgres to pg package (#1781)"
This reverts commit ba8ac974aa
.
* remove pg, use postgres
master
parent
cb4fcf2c6c
commit
5d4e7c84ee
@ -1,14 +0,0 @@
|
|||||||
package pg
|
|
||||||
|
|
||||||
import (
|
|
||||||
// imports the driver, don't remove this comment, golint requires.
|
|
||||||
_ "github.com/lib/pq"
|
|
||||||
"github.com/zeromicro/go-zero/core/stores/sqlx"
|
|
||||||
)
|
|
||||||
|
|
||||||
const postgresDriverName = "postgres"
|
|
||||||
|
|
||||||
// New returns a postgres connection.
|
|
||||||
func New(datasource string, opts ...sqlx.SqlOption) sqlx.SqlConn {
|
|
||||||
return sqlx.NewSqlConn(postgresDriverName, datasource, opts...)
|
|
||||||
}
|
|
@ -1,11 +0,0 @@
|
|||||||
package pg
|
|
||||||
|
|
||||||
import (
|
|
||||||
"testing"
|
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestPostgreSql(t *testing.T) {
|
|
||||||
assert.NotNil(t, New("postgre"))
|
|
||||||
}
|
|
@ -1,7 +1,14 @@
|
|||||||
package postgres
|
package postgres
|
||||||
|
|
||||||
import "github.com/zeromicro/go-zero/core/stores/pg"
|
import (
|
||||||
|
// imports the driver, don't remove this comment, golint requires.
|
||||||
|
_ "github.com/lib/pq"
|
||||||
|
"github.com/zeromicro/go-zero/core/stores/sqlx"
|
||||||
|
)
|
||||||
|
|
||||||
// New creates a new postgresql store.
|
const postgresDriverName = "postgres"
|
||||||
// Deprecated: use pg.New instead.
|
|
||||||
var New = pg.New
|
// New returns a postgres connection.
|
||||||
|
func New(datasource string, opts ...sqlx.SqlOption) sqlx.SqlConn {
|
||||||
|
return sqlx.NewSqlConn(postgresDriverName, datasource, opts...)
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue