Re: [BUGS] in(NULL)

2002-05-23 Thread Joel Burton
ULL is 10, therefore we can't say that it isn't. Therefore, for a NOT IN (xx,yy,NULL), all evaluations are either false or unknown). SQL specs are clear on this point, and its covered well in Celko's _SQL_for_Smarties_: NOT IN ( xx, yy, NULL) returns nothing. At least

[BUGS] Bug or misunderstanding w/domains in 7.3devel?

2002-04-18 Thread Joel Burton
erce the value to the correct domain: test=# select * from t2 where f='2'::typ; f --- (0 rows) However, this works: test=# select * from t2 where f='2'::char; f --- 2 (1 row) Is this a bug? Is this correct behavior? Am I misunderstanding this? Thanks!

Re: [BUGS] ODBC driver and non case-insensitivity?

2001-10-19 Thread Joel Burton
place/sed/perl/whatever the quotes out of the SQL dump before importing to PG, or (b) once in PG, ALTER TABLE "FOO" RENAME TO "foo". (b) is tricky, though, as index names and ref integrity constraints and such aren't corrected for this. (a) is a better solution. HTH, --

Re: [BUGS] Windows ODBC tables list (with 7.1 CVS)

2000-12-14 Thread Joel Burton
7;t have VisualC++, you can my compiled copy from www.scw.org/pgaccess. Good luck! -- Joel Burton, Director of Information Systems -*- [EMAIL PROTECTED] Support Center of Washington (www.scw.org)

Re: [BUGS] Rules with Conditions: Still Doesn't Work (Bug Rpt)

2000-12-05 Thread Joel Burton
to handle all cases. > Thanks for the detailed, easy-to-reproduce bug example! These sorts > of reports are by far the nicest from a developer's point of view ;-) My Mom always said I loved finding problems. :-) -- Joel Burton, Director of Information Systems -*- [EMAIL PROTECTED] Support Center of Washington (www.scw.org)

[BUGS] Rules with Conditions: Still Doesn't Work (Bug Rpt)

2000-12-04 Thread Joel Burton
te rule r as on update to v do instead ( insert into c (pid, descrip) select new.pid, new.descrip ); update v set descrip='test' where pid=2; -- gets error "ERROR: JOIN qualification may not refer -- to other relations" -- Joel Burton, Director of Information Systems -*- [EMAIL PROTECTED] Support Center of Washington (www.scw.org)