Displaying 2 results from an estimated 2 matches for "fund_id".
Did you mean:
found_it
2007 May 16
2
very odd controller spec problem
Here''s a snippet:
it "should provide the fund" do
get(:timesheet,{:id=>@fund.id})
assigns[:fund].should == @fund
end
Works fine on my box, fails on my CI server. Here''s the output:
NoMethodError in ''The FundController timesheet should provide the fund''
You have a nil object when you didn''t expect it!
You might have
2009 Mar 27
0
consistent segfaults in ROracle with one of the databases
...e spots a certain
pattern in it:
SELECT TIMESTAMP, VALUE, VM FROM
(WITH ev AS
(SELECT audit_key_new key, audit_date dt, audit_batch_nbr,
audit_date
FROM dots_audit.audit_event
WHERE table_name='VALUE_PROPERTY_MAP'),
jfsm AS
(SELECT audit_key, fund_id, fund_mult
FROM dots_audit.value_property_map WHERE property_id='%s'
UNION SELECT audit_key, value_id, value_mult
FROM dots.value_property_map WHERE property_id='%s')
SELECT DISTINCT
ev.dt - to_date('01011970','ddmmyyyy')...