BUG #17647: 12.12 package has difference on ubuntu 18.04

From: PG Bug reporting form <noreply(at)postgresql(dot)org>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Cc: mikefroehner(at)gmx(dot)de
Subject: BUG #17647: 12.12 package has difference on ubuntu 18.04
Date: 2022-10-17 14:18:44
Message-ID: 17647-355ab16b3ab3c775@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 17647
Logged by: Mike Fröhner
Email address: mikefroehner(at)gmx(dot)de
PostgreSQL version: 12.12
Operating system: Ubuntu 18.04
Description:

Hello,

today our CI noticed the upgrade of PostgreSQL to 12.12. We have a CI/CD
which tests our Puppet Module against Ubuntu 16./18./20./22.04. We run
different tests (kitchen-ci) including the following:
```
describe command('/usr/bin/sudo -u postgres psql -U myuser1 -h 127.0.0.1
mydb1 -c "CREATE TABLE foo (foo char);"') do
its('exit_status') { should eq 0 }
its('stdout') { should eq "CREATE TABLE\n" }
its('stderr') { should eq '' }
end
```
Therefore we rollout a DB and a user via:
```
postgresql::databases:
'mydb1':
user: myuser1
password: mypassword1
host: 127.0.0.1/32
```
We also rollout a file:
```
'/var/lib/postgresql/.pgpass':
owner: postgres
group: postgres
mode: '0600'
content: '*:*:*:myuser1:mypassword1'
require_class: postgresql
```
This test only fails/times out on Ubuntu 18.04 because it is waiting for a
password input. With all other Ubuntu (16./20./22.04) this test succedds. Is
there anything wrong with my test or is the package for Ubuntu 18.04 broken?

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Ilya Anfimov 2022-10-17 14:33:38 Re: BUG #17646: create rule named "_RETURN" will cause pg core
Previous Message Tom Lane 2022-10-17 14:17:55 Re: BUG #17646: create rule named "_RETURN" will cause pg core