mirror of https://github.com/jackc/pgx.git
30 lines
895 B
Plaintext
30 lines
895 B
Plaintext
package pgx_test
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"github.com/jackc/pgx"
|
|
"os"
|
|
"strconv"
|
|
)
|
|
|
|
var defaultConnConfig = &pgx.ConnConfig{Host: "127.0.0.1", User: "pgx_md5", Password: "secret", Database: "pgx_test"}
|
|
var replicationConnConfig *pgx.ConnConfig = nil
|
|
var cratedbConnConfig *pgx.ConnConfig = nil
|
|
|
|
func init() {
|
|
pgVersion := os.Getenv("PGVERSION")
|
|
|
|
if len(pgVersion) > 0 {
|
|
v, err := strconv.ParseFloat(pgVersion, 64)
|
|
if err == nil && v >= 9.6 {
|
|
replicationConnConfig = &pgx.ConnConfig{Host: "127.0.0.1", User: "pgx_replication", Password: "secret", Database: "pgx_test"}
|
|
}
|
|
}
|
|
|
|
crateVersion := os.Getenv("CRATEVERSION")
|
|
if crateVersion != "" {
|
|
cratedbConnConfig = &pgx.ConnConfig{Host: "127.0.0.1", Port: 6543, User: "pgx", Password: "", Database: "pgx_test"}
|
|
}
|
|
}
|
|
|