Michael Fuhr <[EMAIL PROTECTED]> writes: > Here's a simplified client program (the original has > error checking but I've stripped it out for brevity; this simplified > version behaves the same way):
I get the same results for all three after fixing the subscripting mistake: - values[1] = "Fairview"; + values[0] = "Fairview"; Is your original program making the same mistake? 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