Don't output the schema
This commit is contained in:
parent
1c28f761f1
commit
702bb2095e
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ func (p *pgTester) setup() error {
|
|||
|
||||
r, w := io.Pipe()
|
||||
dumpCmd.Stdout = w
|
||||
createCmd.Stdin = io.TeeReader(newFKeyDestroyer(rgxPGFkey, r), os.Stdout)
|
||||
createCmd.Stdin = newFKeyDestroyer(rgxPGFkey, r)
|
||||
|
||||
if err = dumpCmd.Start(); err != nil {
|
||||
return errors.Wrap(err, "failed to start pg_dump command")
|
||||
|
|
Loading…
Reference in a new issue