Displaying 1 result from an estimated 1 matches for "zimp_id".
Did you mean:
comp_id
2006 Mar 01
1
maddening intermittent failures in unit tests with "working" code
...rb configuration, including a mod that disables constraint
checking in SQL (without this, the tests fail).
At a loss...
thanks
Chris
================== Extra info ===========
The SQL produced by the reservations function is:
SELECT * FROM zimps LEFT JOIN users_zimps ON zimps.id = users_zimps.zimp_id
WHERE (users_zimps.user_id = 5 )
SCHEMA
------
CREATE TABLE `users` (
`id` int(11) NOT NULL auto_increment,
[....]
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE `users_zimps` (
`zimp_id` int(10) unsigned NOT NULL default ''0'',
`user_id` int...