Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion coderd/database/dbtestutil/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ func pgDump(dbURL string) ([]byte, error) {
cmd := exec.Command(cmdArgs[0], cmdArgs[1:]...) // nolint:gosec
cmd.Env = []string{
// "PGTZ=UTC", // This is probably not going to be useful if tz has been changed.
"PGCLIENTENCODINDG=UTF8",
"PGCLIENTENCODING=UTF8",
"PGDATABASE=", // we should always specify the database name in the connection string
}
var stdout bytes.Buffer
Expand Down