Michael Meskes <[EMAIL PROTECTED]> writes: > On Sun, Sep 03, 2006 at 10:21:11PM -0400, Bruce Momjian wrote: >> When I tried the ecpg regression tests it complained there was no >> results/ directory. I created one and it worked.
> Hmm, anyone else experiencing this? The pg_regress.sh has this code that > should create it: > outputdir="results/" > if [ ! -d "$outputdir" ]; then > mkdir -p "$outputdir" || { (exit 2); exit; } > fi I'll bet you should lose the slash in $outputdir. test(1) might or might not be "friendly" about stripping that off. 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