mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Test that PostgreSQL adapter includes usec
when quoting DateTime
This commit is contained in:
parent
1cb5094903
commit
5f631d63ae
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
* Test that PostgreSQL adapter includes `usec` when quoting `DateTime` objects
|
||||
|
||||
*Ben Cherry*
|
||||
|
||||
* Fix PredicateBuilder so polymorhic association keys in `where` clause can
|
||||
also accept not only `ActiveRecord::Base` direct descendances (decorated
|
||||
models, for example).
|
||||
|
|
|
@ -52,6 +52,11 @@ module ActiveRecord
|
|||
c = Column.new(nil, nil, 'text')
|
||||
assert_equal "'666'", @conn.quote(fixnum, c)
|
||||
end
|
||||
|
||||
def test_quote_time_usec
|
||||
assert_equal "'1970-01-01 00:00:00.000000'", @conn.quote(Time.at(0))
|
||||
assert_equal "'1970-01-01 00:00:00.000000'", @conn.quote(Time.at(0).to_datetime)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue