Peter Eisentraut <[EMAIL PROTECTED]> writes: > Somehow pgindent appears to do odd things with multiline string constants, > such as
> somefunc(&blah, > "lots of text" > "with mulitple lines" > "like this"); > Afterwards this looks more like this: > somefunc(&blah, > "lots of text" > "with mulitple lines" > "like this"); Sometimes it does that to keep the lines from extending past column 80. I'm not sure that this is an improvement :-(, but anyway you can fix it by breaking the string literal into smaller chunks so that there's no line-wrapping going on in an 80-column view. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match