aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/lib/pq/user_posix.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/lib/pq/user_posix.go')
-rw-r--r--vendor/github.com/lib/pq/user_posix.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/vendor/github.com/lib/pq/user_posix.go b/vendor/github.com/lib/pq/user_posix.go
new file mode 100644
index 0000000..bf98252
--- /dev/null
+++ b/vendor/github.com/lib/pq/user_posix.go
@@ -0,0 +1,24 @@
+// 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
+}