pgDataDir returns the path to the PostgreSQL data directory.
()
| 123 | |
| 124 | // pgDataDir returns the path to the PostgreSQL data directory. |
| 125 | func pgDataDir() string { |
| 126 | return filepath.Join(pgBaseDir(), "data") |
| 127 | } |
| 128 | |
| 129 | // pgBin returns the full path to a PostgreSQL binary. |
| 130 | func pgBin(name string) string { |
no test coverage detected