diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2017-12-24 16:42:04 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2017-12-24 20:58:53 +0000 |
commit | bbfb5dcd8ece2bbf04cc7323b7cc03581d91d7bd (patch) | |
tree | eece7f86de2cef233662768aaa71904212901d93 /test/scripts/2620-Postgresql | |
parent | 0972d4d7f8213f61a2181c65a94ffd97eaf381b9 (diff) |
Lookups: fix pgsql multiple-row, single-column return
Report & fix from James <list@xdrv.co.uk>; additional tidying and testcase by JGH
Broken-by: acec9514b1
Diffstat (limited to 'test/scripts/2620-Postgresql')
-rw-r--r-- | test/scripts/2620-Postgresql/2620 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/scripts/2620-Postgresql/2620 b/test/scripts/2620-Postgresql/2620 index 62ee31354..ba3a3bcc8 100644 --- a/test/scripts/2620-Postgresql/2620 +++ b/test/scripts/2620-Postgresql/2620 @@ -13,6 +13,7 @@ system 'createdb -h localhost -p PORT_N test'; system 'psql -h localhost -p PORT_N -d test \ -c "CREATE TABLE them ( name text, id text );" \ -c "INSERT INTO them VALUES ( \'Philip Hazel\', \'ph10\' );" \ + -c "INSERT INTO them VALUES ( \'Aristotle\', \'aaaa\' );" \ -c "INSERT INTO them VALUES ( \'\', \'nothing\' );" \ -c "INSERT INTO them VALUES ( \'\"stquot\', \'quote2\' );" \ -c "INSERT INTO them VALUES ( \'before\' || CHR(13) || CHR(10) || \'after\', \'newline\' );" \ @@ -37,6 +38,9 @@ ${lookup pgsql {servers=x:localhost; select name from them where id='ph10';}} ${lookup pgsql {servers=localhost::PORT_N:x; select name from them where id='ph10';}} ${lookup pgsql {servers=localhost::PORT_N/test/CALLER/:x; select name from them where id='ph10';}} ${lookup pgsql {servers=(DIR/pgsql/.s.PGSQL.PORT_N)/test/CALLER/:x; select name from them where id='ph10';}} +x +${lookup pgsql {SELECT name FROM them WHERE id IN ('ph10', 'aaaa');}} +${lookup pgsql {SELECT * FROM them WHERE id IN ('ph10', 'aaaa');}} **** exim -d -bh 10.0.0.0 mail from:<a@b> |