Remove spaces in pg_dump

Started by Bruce Momjianover 22 years ago1 messageshackers
Jump to latest
#1Bruce Momjian
bruce@momjian.us

Seems pg_dump dumps funcions with a space between the function name and
opening paren. It looks strange:

SELECT pg_catalog.setval ('test_x_seq', 1, false);

This patch removes the space:

SELECT pg_catalog.setval('test_x_seq', 1, false);

I didn't even realize the space worked, but it does:

test=> select version ();
version
------------------------------------------------------------------
PostgreSQL 7.4beta1 on i386-pc-bsdi4.3.1, compiled by GCC 2.95.3
(1 row)

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073

Attachments:

/bjm/difftext/plainDownload+10-10