On Wed, Jun 4, 2014 at 5:46 AM, Keith Fiske <ke...@omniti.com> wrote: > > Andres's changes on June 3rd to > https://github.com/postgres/postgres/commits/master/src/test/regress/expected/create_function_3.out > are causing patch v2 to fail for that regression test file. > > postgres $ patch -p1 -i ../inet_agg_v2.patch > patching file src/backend/utils/adt/network.c > patching file src/include/catalog/pg_aggregate.h > patching file src/include/catalog/pg_proc.h > patching file src/include/utils/builtins.h > patching file src/test/regress/expected/create_function_3.out > Hunk #1 FAILED at 153. > 1 out of 1 hunk FAILED -- saving rejects to file > src/test/regress/expected/create_function_3.out.rej > patching file src/test/regress/expected/inet.out > patching file src/test/regress/sql/inet.sql > > Otherwise it applies without any issues to the latest HEAD. I built and > started a new instance, and I was able to test at least the basic min/max > functionality > > keith=# create table test_inet (id serial, ipaddress inet); > CREATE TABLE > Time: 25.546 ms > keith=# insert into test_inet (ipaddress) values ('192.168.1.1'); > INSERT 0 1 > Time: 3.143 ms > keith=# insert into test_inet (ipaddress) values ('192.168.1.2'); > INSERT 0 1 > Time: 2.932 ms > keith=# insert into test_inet (ipaddress) values ('127.0.0.1'); > INSERT 0 1 > Time: 1.786 ms > keith=# select min(ipaddress) from test_inet; > min > ----------- > 127.0.0.1 > (1 row) > > Time: 3.371 ms > keith=# select max(ipaddress) from test_inet; > max > ------------- > 192.168.1.2 > (1 row) > > Time: 1.104 ms
Thanks for the test. Patch is re-based to the latest head. Regards, Hari Babu Fujitsu Australia
inet_agg_v3.patch
Description: Binary data
-- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers