mirror of
https://github.com/minio/minio.git
synced 2024-12-26 07:05:55 -05:00
315e66858c
* The user is required to specify a table name and database connection information in the configuration file. * INSERTs and DELETEs are done via prepared statements for speed. * Assumes a table structure, and requires PostgreSQL 9.5 or above due to the use of UPSERT. * Creates the table if it does not exist with the given table name using a query like: CREATE TABLE myminio ( key varchar PRIMARY KEY, value JSONB ); * Vendors some required libraries.
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
|
|
}
|