postgresql/src/interfaces/ecpg
Stephen Frost 551938ae22 Post-pgindent cleanup
Make slightly better decisions about indentation than what pgindent
is capable of.  Mostly breaking out long function calls into one
line per argument, with a few other minor adjustments.

No functional changes- all whitespace.
pgindent ran cleanly (didn't change anything) after.
Passes all regressions.
2013-06-01 09:38:15 -04:00
..
compatlib pgindent run for release 9.3 2013-05-29 16:58:43 -04:00
ecpglib pgindent run for release 9.3 2013-05-29 16:58:43 -04:00
include ecpg: Parallel make fix 2013-03-29 21:39:55 -04:00
pgtypeslib Post-pgindent cleanup 2013-06-01 09:38:15 -04:00
preproc pgindent run for release 9.3 2013-05-29 16:58:43 -04:00
test Extend and improve use of EXTRA_REGRESS_OPTS. 2013-01-12 08:28:58 -05:00
Makefile Suppress parallel build in interfaces/ecpg/preproc/. 2012-11-28 22:19:46 -05:00
README.dynSQL Remove useless whitespace at end of lines 2010-11-23 22:34:55 +02:00

src/interfaces/ecpg/README.dynSQL

descriptor statements have the following shortcomings

- input descriptors (USING DESCRIPTOR <name>) are not supported

  Reason: to fully support dynamic SQL the frontend/backend communication
  	should change to recognize input parameters.
  	Since this is not likely to happen in the near future and you
  	can cover the same functionality with the existing infrastructure
  	(using s[n]printf), I'll leave the work to someone else.