mirror of
https://github.com/minio/minio.git
synced 2025-01-26 22:23:15 -05:00
e29009d347
Commit 5c1376516867aeca06f114868e329e1d710f7148 removed postgre registration triggerd by the automatic gofmt command but it was the only where pg is registered. This commit fixes behavior and adds unit tests to check whether postgre & sql are registered or not.
25 lines
409 B
Go
25 lines
409 B
Go
// Package pq is a pure Go Postgres driver for the database/sql package.
|
|
|
|
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris rumprun
|
|
|
|
package pq
|
|
|
|
import (
|
|
"os"
|
|
"os/user"
|
|
)
|
|
|
|
func userCurrent() (string, error) {
|
|
u, err := user.Current()
|
|
if err == nil {
|
|
return u.Username, nil
|
|
}
|
|
|
|
name := os.Getenv("USER")
|
|
if name != "" {
|
|
return name, nil
|
|
}
|
|
|
|
return "", ErrCouldNotDetectUsername
|
|
}
|