"Greg Sabino Mullane" <[EMAIL PROTECTED]> writes: > Second, Jan promised at OSCON to fix up server-side prepare so it actually > works even if you do not have the exact types to pass in. I presume you > will then be able to do something like this: > PREPARE mystatement AS SELECT * FROM pg_class WHERE relanem = $1 > which will make driver writers very, very happy.
Why would a driver writer care? He can use the Prepare protocol message, which already can do the above --- and more to the point, there's already a way for him to *find out* what types were resolved. There is no way for the SQL-level PREPARE command to provide info about how types were resolved, so I'm not in favor of hacking the SQL command this way. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match