I have a weird bug that has appeared just recently. I created a user-password table (id, user_id, password). When a record is created only the id is entered initially. The user_id and password is added later (but start out as null).
When I do a query of all records I get user_id = null, password = null for those records. But if I do a query of only those with a user_id = null (SELECT * FROM users WHERE user_id = null
I get 0 records.
I have used this query within our intranet for a year and half and it has always worked. However, I just upgraded Postgresql to version 7.2.2-1 that comes with RedHat 8.0.
Any idea on how to solve this?
Matt
When I do a query of all records I get user_id = null, password = null for those records. But if I do a query of only those with a user_id = null (SELECT * FROM users WHERE user_id = null
I get 0 records.
I have used this query within our intranet for a year and half and it has always worked. However, I just upgraded Postgresql to version 7.2.2-1 that comes with RedHat 8.0.
Any idea on how to solve this?
Matt